/**
 * ---------------------------------------------------------------
 * Custom Script by Evan Ahmed EMon
 * ---------------------------------------------------------------
 * Copyright © 2025 Evan Ahmed EMon
 * 
 * This script is protected under copyright law.
 * Unauthorized distribution, reproduction, or modification 
 * without prior permission is strictly prohibited.
 * 
 * Contact Information:
 * WhatsApp: +8801864614704
 * ---------------------------------------------------------------
 * Please respect the effort and time invested in creating 
 * this script. Your support ensures continuous innovation 
 * and quality development.
 * ---------------------------------------------------------------
 */


@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1e1e1e;
  --white: #ffffff;
  --btn-primary: linear-gradient(to right bottom, #ff7e5f, #feb47b); /* উষ্ণ কমলা-গোলাপি গ্রেডিয়েন্ট */
  --primary-color: #ff7e5f;
  --secondary-color: #feb47b;
  --font: "Poppins", sans-serif;
  --red: #e63946;
  --light-grey: #eaeaea;
  --bg-daymode: #fdf6f0; /* হালকা পিচ ব্যাকগ্রাউন্ড */
  --bg-darkmode: #1a1a1a;
  --bg-card-day: #ffffff;
  --bg-card-night: #2b2b2b;
  --bg-sidebar-day: #ff7e5f;
  --bg-sidebar-night: #252525;
  --bg-content-night: #292929;
  --bg-content-night-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  --bg-menu-active: #d35400; /* ডিপ অরেঞ্জ */
  --bg-filter-btn: #d35400;
  --bg-secondary: #f4a261; /* সফট কমলা */
  --text-white: #ffffff;
  --text-black: #222222;
  --text-primary: #d35400;
  --dark-text-primary: #ff5252;
  --bg-input: #f9e5d8;
  --dark-bg-input: #302d2d;
  --badges-pending: #e09f3e;
  --badges-inprogress: #f4a261;
  --badges-completed: #2a9d8f; /* সফট সবুজ */
  --badges-partials: #8d99ae;
  --badges-canceled: #d62828;
  --badges-processing: #b53d00;
  --home-hero-top-text: #e63946;
  --home-btn-hover: #ff7e5f;
  --bg-user-day: #f4f1de;
  --bg-user-night: #3d3d3d;
  --bg-dark-menu-active: #e76f51;
  --more-menu: #6d597a;
  --btn-day-gradient: linear-gradient(-45deg, #ff9a8b, #ff6a88);
  --bg-light-grey: #f3e5d8;
}


.hidden {
  display: none;
}

#parentContainer {
  width: 100%;
  min-height: 100vh !important;
  background: var(--bg-daymode);
  display: flex;
}

.btn-primary {
  color: #fff;
  background-color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--more-menu);
  border-color: var(--more-menu);
}

.nightmode #parentContainer {
  background: var(--bg-darkmode);
}

#parentContainer .sidebar {
  width: 300px;
  background: linear-gradient(to bottom, #191924, #1919248a), url(https://storage.perfectcdn.com/m06oqf/h63xleoiz26gc46u.webp) ;
  background-color: #191924;
  min-height: 100vh;
  position: fixed;
  background-repeat: no-repeat;
  background-position: bottom;
  transition: 0.5s;
}

.top_bar {
  z-index: 1;
}

.nightmode #parentContainer .sidebar {
  background: linear-gradient(to bottom, #191924, #1919248a), url(https://storage.perfectcdn.com/m06oqf/h63xleoiz26gc46u.webp) ;
  background-color: #191924;
  background-repeat: no-repeat;
  background-position: bottom;
}

#noAuthNav {
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(5px);
}

#noAuthNav .nav-item .nav-link {
  font-size: 18px;
  font-weight: bold;
  color: #232323;
  display: inline-block;
  padding: 15px 15px;
  transition: 0.5s ease-in-out;
}

#noAuthNav .nav-item .nav-link:hover,
#noAuthNav .nav-item .nav-link.active {
  color: var(--text-primary);
}

#parentContainer .parentContent {
  width: 100%;
  padding-left: 300px;
  transition: 0.5s;
}

#parentContainer.toggleSidebar .parentContent {
  padding-left: 0px;
}

#parentContainer .parentContent .top_bar {
  position: fixed;
  width: calc(100% - 350px);
  height: 50px;
  margin: 0 auto;
  margin-left: 30px;
  margin-right: 20px;
  background: var(--text-white);
  padding: 5px;
  margin-top: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}

#parentContainer .parentContent main#content {
  margin-left: 18px;
  margin-right: 20px;
}

#parentContainer.toggleSidebar .parentContent main#content {
  margin-left: 10px;
  margin-right: 10px;
}

.nightmode #parentContainer .parentContent .top_bar {
  background: var(--bg-content-night);
  box-shadow: var(--bg-content-night-shadow);
}

.user_top_main .btn-user {
  background: transparent;
  outline: 0;
  padding: 0px;
  background: var(--text-primary);
  border-radius: 50px;
}

.user_top_main .img-avatar {
  width: 40px;
  height: 40px;
}

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

.closeBtn {
  display: none;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  right: -20px;
  top: 10px;
  box-shadow: 0 0 10px #504f4f;
}

.backdrop {
  position: fixed;
  width: 100%;
  height: 50px;
  backdrop-filter: blur(3px);
  z-index: 1;
}

#parentContainer.toggleSidebar .parentContent .top_bar {
  width: calc(100% - 40px);
  margin-left: 20px;
  z-index: 1;
}

/* Sidebar inner */

#parentContainer.toggleSidebar .sidebar {
  transform: translateX(-100%);
}

.sidebar_logo {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sidebar_logo img {
  width: 200px;
}

.sidebar_user {
  margin: 0px 20px;
  text-align: center;
  background: var(--bg-user-day);
  padding: 15px 5px;
  border-radius: 10px;
}

.nightmode .sidebar_user {
  background: var(--bg-user-night);
  box-shadow: var(--bg-content-night-shadow);
}

.sidebar_user .user_avtar img {
  width: 70px;
  height: 70px;
}

.sidebar_user .user_info .balance {
  margin: 0;
  padding: 0;
  display: inline-block;
  padding: 4px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
  color: var(--text-white);
  background: var(--bg-secondary);
}

.sidebar_user .user_info .username {
  color: var(--text-white);
  font-weight: bold;
  font-size: 14px;
}

#toggleSidebarBtn {
  position: absolute;
  background: var(--text-white);
  left: -55px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50px;
  z-index: 99999;
  transition: 0.5s;
}

.toggleSidebar #toggleSidebarBtn {
  left: 0px;
  transform: rotate(180deg);
  background: transparent !important;
}

.nightmode .toggleSidebar #toggleSidebarBtn {
  color: var(--text-white);
}

#toggleSidebarBtn .offIcon {
  display: none;
}

.toggleSidebar #toggleSidebarBtn .onIcon {
  display: none;
}

.toggleSidebar #toggleSidebarBtn .offIcon {
  display: block;
}

.sidebar_menu {
  margin: 0px 20px;
  margin-top: 10px;
  height: 100%;
  overflow: auto;
}

.sidebar_menu .menu_item {
  display: flex;
  text-decoration: none;
  width: 100%;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 3px;
  border: none;
  transition: 0.5s;
}

.sidebar_menu .menu_item:hover {
  background: #303042;
}

.nightmode .sidebar_menu .menu_item:hover {
  background: #303042;
}

.sidebar_menu .menu_item.active {
  background: var(--bg-menu-active);
}

.nightmode .sidebar_menu .menu_item.active {
  /* background: var(--bg-dark-menu-active); */
  /* box-shadow: 0px 0px 20px var(--bg-dark-menu-active); */
}

.sidebar_menu .menu_item .menu_icon {
  font-size: 16px;
  color: var(--text-white);
}

.sidebar_menu .menu_item .menu_text {
  color: var(--text-white);
  font-size: 16px;
  font-weight: normal;
}

.logo_for_phone {
  display: none;
  transition: 0.5s;
}

.nightmode .logo_for_phone img {
  filter: invert(1);
}

.toggleSidebar .logo_for_phone {
  display: block;
}

.logo_for_phone img {
  width: 170px;
  margin-left: 50px;
}

/* more menu */
#moreMenu {
  display: flex;
  text-decoration: none;
  width: 100%;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 3px;
  transition: 0.5s;
  background: #303042;
  color: #fff;
  border: 1px solid #303042;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#moreMenuContainer {
  height: 0px;
  display: none;
  transition: 0.5s;
}

#moreMenuContainer.actived {
  height: 100%;
  display: block;
}

#toggleModes {
  background: transparent;
  border: none;
  font-size: 25px;
}

.nightmode #toggleModes {
  color: var(--text-white);
}

#toggleModes #sun {
  display: none;
}

.top_right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nightmodeActive #sun {
  display: block !important;
}

.nightmodeActive #moon {
  display: none !important;
}

/* Content */
#content {
  margin-top: 70px;
}

.nightmode #content {
  color: var(--text-white);
}

/* All Page innner CSS */
.form-group {
  margin-bottom: 1rem !important;
}

.control-label,
.form-label {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-black);
}

.nightmode .control-label,
.nightmode .form-label {
  color: var(--text-white);
}

.nightmode .card,
.nightmode .well,
.nightmode .card.custom__card {
  background: var(--bg-content-night);
  box-shadow: var(--bg-content-night-shadow);
}

.dashboard .btn.btn-primary {
  width: 100%;
  background: var(--btn-day-gradient);
  color: #fff;
  border: 0;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  padding: 15px 10px;
  box-shadow: 0 0 10px #5f1de8a3;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

#tabSwiter>.nav.nav-pills {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

#tabSwiter>.nav.nav-pills .nav-item .nav-link {
  border: 1px solid var(--bg-user-day);
  color: #fff;
  font-size: 16px;
  padding: 4px 15px !important;
  width: 100%;
  height: 35px;
  border-radius: 50px;
  background: var(--bg-user-day);
}

#tabSwiter>.nav.nav-pills .nav-item .nav-link.active {
  border: 1px solid var(--text-primary);
  background: var(--btn-day-gradient);
  /* box-shadow: 0 0 10px #5f1de8a3; */
  color: var(--text-white);
}

.nightmode #tabSwiter>.nav.nav-pills .nav-item .nav-link {
  color: var(--text-white);
}

/* Droped Dwon User Menu */
#userProMenu {
  width: 200px;
  margin: 0;
  padding: 0;
  z-index: 9;
}

.nightmode #userProMenu {
  background: var(--bg-content-night);
  box-shadow: var(--bg-content-night-shadow);
}

#userProMenu .user_hipe {
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 8px;
  padding: 10px;
}

#userProMenu .user_hipe .hipe_avatar {
  width: 50px;
  height: 50px;
  border: 1px solid var(--text-primary);
  border-radius: 50px;
}

#userProMenu .user_hipe .user_infos p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--text-black);
}

.nightmode #userProMenu .user_hipe .user_infos p {
  color: var(--text-white);
}

#userProMenu .linesperator {
  border-bottom: 1px solid #e5d9d9;
}

.nightmode #userProMenu .linesperator {
  border-color: #4b4d7673;
}

#userProMenu li {
  margin-top: 2px;
  margin-bottom: 2px;
  padding: 0px;
}

#userProMenu li a.user_menu {
  display: flex;
  width: 100%;
  font-size: 16px;
  color: var(--text-black);
  text-decoration: none;
  cursor: pointer;
  padding: 5px 10px;
  gap: 5px;
  font-weight: bold;
  transition: 0.5s;
}

.nightmode #userProMenu li a.user_menu {
  color: var(--text-white);
}

#userProMenu li a.user_menu i {
  font-size: 15px;
}

#userProMenu .user_name,
#userProMenu .user_balance {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: var(--text-black);
  font-weight: bold;
}

.nightmode #userProMenu .user_name,
.nightmode #userProMenu .user_balance {
  color: var(--text-white);
}

#userProMenu li a.user_menu:hover {
  background: #e3e3e3;
}

.nightmode #userProMenu li a.user_menu:hover {
  background: #4b4d7673;
}

#userProMenu li a.user_menu.logout {
  color: var(--badges-canceled);
}

.nightmode #userProMenu li a.user_menu.logout:hover {
  background: var(--badges-canceled);
  color: var(--text-white);
}

/* Filter Btn*/
.filter_btn_wrap {
  display: grid;
  gap: 10px 10px;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}

.filter_btn_wrap .btn_filter {
  font-size: 18px;
  text-transform: capitalize;
  border: none;
  padding: 3px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  background: #303042;
  color: #fff;
  border: 2px solid #303042;
  /* box-shadow: inset 0 5px 10px rgba(31, 31, 31, 0.7), 0 2px 8px #0000005e; */
  transition: 0.5s;
}

.filter_btn_wrap .btn_filter.activeItem {
  transition: 0.5s;
}

.nightmode .filter_btn_wrap .btn_filter {
  background: var(--bg-sidebar-night);
  border-color: var(--bg-sidebar-night);
  color: var(--text-white);
}

.filter_btn_wrap .btn_filter>i,
.filter_btn_wrap .btn_filter>.filter_txt {
  pointer-events: none;
}

.filter_btn_wrap .btn_filter.activeItem {
  background: var(--btn-day-gradient);
  box-shadow: 0 0 15px #5f1de87a;
  color: var(--text-white);
  border-color: var(--text-primary);
}

/* User Statistics */
.user__data__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.user_data__item {
  display: flex;
  gap: 8px;
  background: var(--text-white);
  padding: 10px 10px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  align-items: center;
}

.nightmode .user_data__item {
  background: var(--bg-content-night);
  box-shadow: var(--bg-content-night-shadow);
}

.user_data__item .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 7px;
  color: var(--text-white);
  background: var(--text-primary);
  box-shadow: 0 0 10px #5f1de87a;
}

.user_data__item .icon_img{
  width: 50px;
  height: 50px;
}

.user_data__item .icon_img img{
  width: 100%;
}

.user_data__item .user__data h4 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
}

.user_data__item .user__data p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
}

/* services details part */


.card-details .card-body-details {
  padding: 0px !important;
}

.card-details .card-body-details #pills-details {
  padding: 1rem 1rem;
}

.card-details .card-body-details .services_name {
  min-height: 100px;
  text-align: center;
  background: linear-gradient(to right, #6336f1c7, #5f1de8de),
    url(https://storage.perfectcdn.com/m06oqf/pafrbo9gewg9omhf.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.current_services {
  padding: 10px;
}

.current_services #servicesId {
  display: inline-block;
  margin-bottom: 5px;
  background: #ffb400;
  font-size: 16px;
  padding: 3px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: #0c0b0b;
}

.current_services #servicesName {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--text-white);
}

.dashboard .details_data {
  margin-bottom: 15px;
}

.dashboard .details_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.details_name h3,
.dashboard .details_data .details_name h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-black);
}

.dashboard.nightmode .details_name h3,
.dashboard.nightmode .details_data .details_name h3 {
  color: var(--text-white);
}

.dashboard .details_data .item {
  display: flex;
  align-items: center;
  height: 50px;
  gap: 10px;
  background: #f1f2f6;
  padding: 8px;
  border-radius: 15px;
}

.dashboard.nightmode .details_data .item {
  background: var(--bg-darkmode);
}

.dashboard .details_data .item .icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  background: #4916bf1a;
  color: var(--bg-sidebar-day);
  border-radius: 50px;
}

.dashboard.nightmode .details_data .item .icon {
  background: #22213b;
  color: var(--dark-text-primary);
}

.dashboard .descriptions_box {
  background: #f1f2f6;
  padding: 10px;
  border-radius: 15px;
}

.dashboard.nightmode .descriptions_box {
  background: var(--bg-darkmode);
}

.dashboard .details_data .item .item_content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.dashboard .details_data .item .item_content p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.dashboard.nightmode .details_data .item .item_content {
  color: #fff;
}

.dashboard.nightmode .descriptions_box {
  color: #fff;
}

.icon_link {
  background: var(--home-hero-top-text) !important;
  color: #fff !important;
}

.icon_start {
  background: #00a1ff !important;
  color: #fff !important;
}

.icon_speed {
  background: #ac42ef !important;
  color: #fff !important;
}

.icon_refill {
  background: #00cf00 !important;
  color: #fff !important;
}

.icon_avg_time {
  background: #002bff !important;
  color: #fff !important;
}

.for_mob {
  display: none;
}

.form-control {
  background-color: var(--bg-daymode);
}

.form-control {
  padding: 10px;
}

.nightmode .form-control {
  background-color: var(--bg-darkmode);
  color: var(--text-white);
  border-color: var(--bg-sidebar-night);
}

/* default infos */
.info_card_title_wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.info_icon {
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #622fee;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px #622fee9e;
}

.info_title {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-black);
}

.nightmode .info_title {
  color: var(--text-white);
}

/* Orders */

#orders_filter,
#defaultOrder {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-group-btn .btn.btn-default {
  background: var(--text-primary);
  color: #fff;
}


.dropdown-item.active,
.dropdown-item:active {
  background: var(--text-primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
}

.orderFilter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--text-primary);
  color: var(--text-white);
  border-color: var(--text-primary);
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  transition: 0.5s;
}

.input-group {
  height: 48px;
}

.input-group .input-group-btn button {
  height: 100%;
  border-radius: 0px 5px 5px 0px;
  border: 1px solid;
  border-color: var(--text-primary);
}

.form-control:focus {
  box-shadow: 0 0 5px var(--text-primary);
  border-color: var(--text-primary);
}

.orderFilter:active,
.orderFilter:focus,
.orderFilter:hover {
  background: var(--bg-dark-menu-active);
  border-color: var(--bg-dark-menu-active);
  color: var(--text-white);
  box-shadow: 0 0 10px var(--text-primary);
}

#defaultOrder .input-group .input-group-btn button {
  z-index: 0;
}

.order_menu_btns {
  gap: 15px;
  margin-bottom: 20px;
}

.order_menu_btns li a {
  background: #464646;
  padding: 10px 20px;
  display: inline-flex;
  border-radius: 50px;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
}

.nightmode .order_menu_btns li a {
  background: #4f5174;
}

.order_menu_btns li.active a {
  background: var(--primary-color-v3);
}

.order_link a {
  width: 400px;
  font-size: 14px;
  display: inline-flex;
  line-break: anywhere;
  color: var(--primary-color-v3);
}

.nightmode .order_link a {
  color: var(--white) !important;
}

.order_date {
  font-size: 14px;
}

.pagination .page-item.active .page-link {
  background: var(--primary-color-v3);
  border-color: var(--primary-color-v3);
}

.page-link {
  color: var(--primary-color-v3);
}

.order_service {
  font-size: 12px;
}

.status_capsule {
  background: var(--primary-color-v3);
  color: var(--white);
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 50px;
  text-align: center;
  min-height: 30px;
  justify-content: center;
}
.select2-container .select2-selection__id,
.select2-container .select2-selection__id-1,
.select2-container .select2-selection__id-2,
.select2-container .select2-selection__id-3,
.select2-container .select2-selection__id-4,
.select2-container .select2-selection__id-5{
  background: var(--text-primary);
}
.status_capsule.status_Completed {
  background: #1cb474 !important;
}

.status_capsule.status_Active {
  background: #795af6 !important;
}

.status_capsule.status_Pending {
  background: #eda417 !important;
}

.status_capsule.status_Processing {
  background: #795af6 !important;
}

.status_capsule.status_Rejected,
.status_capsule.status_Canceled {
  background: #ec3d3d !important;
}

.status_capsule.status_Partial {
  background: #d116bf !important;
}

.status_capsule.status_Paused {
  background: #ff5721 !important;
}

.status_capsule.status_Expired {
  background: #795af6 !important;
}

.status_capsule.status_Error {
  background: #878f99;
}

.nightmode .table tr td,
.nightmode .table tr th {
  color: var(--white) !important;
}

.table tr td,
.table tr th {
  font-size: 14px;
}

.table tr td a {
  color: var(--primary-color-v3);
}

.nightmode .table tr td>div>a,
.nightmode .table tr td>span a {
  color: var(--white);
}

.btn_action {
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--white) !important;
}


/* NEW ORDER PAGE*/

.select2-results__option {
  border-bottom: 1px solid #e3e3e3;
}

.select2-container .dropdown-menu > li > a {
  white-space: inherit;
  padding: 5px 15px;
  font-size: 14px;
}

.dropdown-menu {
  max-height: 400px;
  overflow: auto;
}

.currency_dropdwon .btn-secondary {
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 50px;
  padding: 5px 10px;
  font-size: 14px;
  background: var(--primary-color-v3);
  border-color: var(--primary-color-v3);
}

/*
Api Page Design
*/
#api {
  padding-top: 1rem;
}

.card__title {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  color: #232323;
}

.card__icon {
  width: 50px;
  height: 50px;
  background: var(--text-primary);
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--white);
  border-radius: 5px;
}

pre {
  background: #232323;
  color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
}

/*
Services page
*/
#services {
  padding-top: 2rem;
}

#service-table {
  background: var(--white);
}

.category_name_title{
  background: #6333f0;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.category_name_title i,
.category_name_title strong{
  color: #fff;
  font-weight: normal;
  font-size: 18px;
}

.table_responsive {
  width: 100%;
  overflow: auto;
}


.btn_services_descriptions {
  background: #303042;
  border-radius: 50px !important;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  padding: 7px 15px;
}

.btn_services_descriptions:hover{
  background: var(--primary-color-v2);
  color: #fff!important;
}

.services_dsc_modal {
  position: relative;
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #ffafaf;
}

.services_dsc_modal .service_header {
  background: #f3f3f3;
  text-align: center;
  padding: 15px 10px;
}

.services_dsc_modal .service__id {
  padding: 10px;
  margin: 0px;
}

.services_dsc_modal .services_action,
.services_dsc_modal #service_des,
.services_dsc_modal .service_info {
  padding: 20px 30px;
}

.services_dsc_modal .service_info .serv_info_item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0px;
  border-bottom: 1px dashed #303042;
  align-items: center;
}

/*
Noting Found Design 
*/
.noting_found {
  text-align: center;
}

.noting_found .icon {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 50px;
  opacity: 0.5;
}

.nightmode .noting_found .icon img {
  filter: invert(1);
}

.noting_found h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #808080;
}

.toggleSidebar #closerSidebar {
  display: none;
  width: 100vh;
  height: 100vh;
  position: absolute;
  left: 300px;
  pointer-events: none;
}

/* Accordion button styles */

.default__accoridions .accordion .accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #e6e6e6;
}

.default__accoridions .accordion .accordion-item .accordion-button {
  background: var(--text-primary) !important;
  box-shadow: none;
  color: #fff;
}

.default__accoridions .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(35);
}

.default__accoridions .accordion .accordion-item .accordion-button.collapsed {
  background: #fff !important;
  color: var(--text-black);
}

.default__accoridions .accordion-flush .accordion-item .accordion-button {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* Tickets page design */
.ticket-badges {
  background: #d6defc;
  padding: 1px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-badges.Pending {
  background: var(--text-primary);
  color: var(--text-white);
}

.ticket-badges.Answered {
  background: var(--badges-completed);
  color: var(--text-white);
}

.ticket-badges.Closed {
  background: var(--badges-canceled);
  color: var(--text-white);
}

.user_messages .ticket-message {
  background: #deecff;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
}

.admin_messages .ticket-message {
  background: #e8ffea;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
}

.nightmode .admin_messages .ticket-message,
.nightmode .user_messages .ticket-message {
  background: var(--bg-darkmode);
}

.user_user {
  display: flex;
  align-items: center;
  gap: 8px;
  float: right;
  margin-bottom: 10px;
  margin-top: 10px;
}

.admin_user {
  display: flex;
  align-items: center;
  gap: 8px;
  float: left;
  margin-bottom: 10px;
  margin-top: 10px;
}

.user_user .icons,
.admin_user .icons {
  width: 50px;
  height: 50px;
  border: 1px solid var(--text-primary);
  border-radius: 50px;
}

.admin_user>div,
.user_user>div {
  display: flex;
  flex-direction: column;
}

/*
  Affiliates
*/
.affiliates_top_data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

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

.affiliates_top_data .items .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--text-primary);
  color: var(--text-white);
  border: 2px solid var(--text-primary);
  border-radius: 50px;
  box-shadow: 0 0 10px #5f1de8ad;
}

.affiliates_bottom .bottom_item h5,
.affiliates_top_data .items .info h5 {
  font-size: 12px;
  color: #726e6e;
  margin: 0;
  padding: 0;
}

.affiliates_bottom .bottom_item h4,
.affiliates_top_data .items .info h4 {
  font-size: 16px;
  color: var(--text-black);
  margin: 0;
  padding: 0;
}

.affiliates_bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.affiliates_bottom .bottom_item {
  background: #fff;
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/*
*
*
*
####################################################
Responsive For website 
####################################################
*
*
*
*
*
*/
@media only screen and (max-width: 990px) {
  #parentContainer .sidebar {
    transform: translateX(-100%);
    z-index: 99;
  }

  #parentContainer.toggleSidebar .sidebar {
    transform: translateX(0%);
  }

  #parentContainer .parentContent {
    padding-left: 0px;
  }

  #toggleSidebarBtn {
    left: 0px;
    transform: rotate(180deg);
    background: transparent;
  }

  .nightmode #toggleSidebarBtn {
    color: var(--text-white);
  }

  #parentContainer.toggleSidebar #toggleSidebarBtn {
    transform: rotate(0deg);
  }

  #parentContainer .parentContent .top_bar {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .toggleSidebar .closeBtn {
    display: block;
  }

  #toggleSidebarBtn .onIcon {
    display: none;
  }

  #toggleSidebarBtn .offIcon {
    display: block;
  }

  .logo_for_phone {
    display: block;
  }

  #parentContainer .parentContent main#content {
    margin-left: 10px;
    margin-right: 10px;
  }

  #parentContainer.toggleSidebar .parentContent main#content {
    margin-left: 10px;
    margin-right: 10px;
  }

  .toggleSidebar #closerSidebar {
    display: block;
    pointer-events: all;
  }
}

@media only screen and (max-width: 767px) {
  #parentContainer .sidebar {
    transform: translateX(-100%);
  }

  #parentContainer.toggleSidebar .sidebar {
    transform: translateX(0%);
  }

  #parentContainer .parentContent {
    padding-left: 0px;
  }

  #toggleSidebarBtn {
    left: 0px;
  }

  #parentContainer.toggleSidebar #toggleSidebarBtn {
    background: transparent;
  }

  #parentContainer .parentContent .top_bar {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .toggleSidebar .closeBtn {
    display: block;
  }

  #toggleSidebarBtn .onIcon {
    display: none;
  }

  #toggleSidebarBtn .offIcon {
    display: block;
  }

  .logo_for_phone {
    display: block;
  }

  .user__data__wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter_btn_wrap {
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  }

  .for_desk {
    display: none;
  }

  .for_mob {
    display: block;
  }
}

@media only screen and (max-width: 550px) {
  #parentContainer .sidebar {
    transform: translateX(-100%);
  }

  #parentContainer.toggleSidebar .sidebar {
    transform: translateX(0%);
  }

  #parentContainer .parentContent {
    padding-left: 0px;
  }

  #toggleSidebarBtn {
    left: 0px;
  }

  #parentContainer .parentContent .top_bar {
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
  }

  #parentContainer.toggleSidebar .parentContent .top_bar {
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
  }

  .toggleSidebar .closeBtn {
    display: block;
  }

  #toggleSidebarBtn .onIcon {
    display: none;
  }

  #toggleSidebarBtn .offIcon {
    display: block;
  }

  .logo_for_phone {
    display: block;
  }

  #parentContainer .parentContent main#content {
    margin-left: 0px;
    margin-right: 0px;
  }

  #parentContainer.toggleSidebar .parentContent main#content {
    margin-left: 0px;
    margin-right: 0px;
  }

  .user__data__wrap {
    grid-template-columns: 1fr;
    margin-top: 0px;
    margin-bottom: 5px;
    gap: 5px;
  }

  .user_data__item .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .user_data__item .user__data h4 {
    font-size: 16px;
  }

  .user_data__item .user__data p {
    font-size: 14px;
  }

  .filter_btn_wrap {
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    gap: 5px 5px;
  }

  .filter_btn_wrap .btn_filter {
    padding: 2px;
    border-width: 1px;
  }

  .filter_txt {
    display: none;
  }

  #tabSwiter>.nav.nav-pills .nav-item .nav-link {
    border-width: 1px;
    font-size: 14px;
    height: 30px;
    padding: 2px 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .control-label,
  .form-label {
    font-size: 14px;
    margin-bottom: 3px !important;
  }

  .form-control {
    font-size: 14px;
  }

  form .mb-3,
  .form-group {
    margin-bottom: 7px !important;
  }

  .dashboard .btn.btn-primary {
    font-size: 16px;
    padding: 15px 7px;
  }

  .current_services #servicesName {
    font-size: 14px;
  }

  .item_content,
  .item_content small,
  .descriptions_box {
    font-size: 12px;
    line-break: anywhere;
    line-height: 1.1;
  }

  .dashboard .details_data {
    margin-bottom: 8px;
  }

  .details_name h3,
  .dashboard .details_data .details_name h3 {
    font-size: 14px;
  }

  /*sidebar responsive */
  .sidebar_user {
    margin: 10px 20px;
    text-align: center;
    background: var(--bg-user-day);
    padding: 20px 10px;
    border-radius: 7px;
  }

  .sidebar_user .user_avtar img {
    width: 50px;
    height: 50px;
  }

  .sidebar_user .user_info .balance {
    padding: 0px 11px;
  }

  .sidebar_logo img {
    width: 150px;
  }

  .sidebar_menu .menu_item {
    padding: 5px 15px;
  }

  .sidebar_menu .menu_item .menu_icon {
    font-size: 14px;
  }

  .sidebar_menu .menu_item .menu_text {
    font-size: 15px;
  }

  .logo_for_phone img{
    width: 90px;
  }
  #toggleSidebarBtn{
    width: 40px;
    font-size: 24px;
  }
  .logo_for_phone img{
    margin-left: 35px;
  }
  .currency_dropdwon .btn-secondary{
    font-size: 11px;
  }
  .user_top_main .img-avatar {
      width: 35px;
      height: 35px;
  }
  #toggleModes {
    font-size: 22px;
}

#userProMenu .user_name{
  font-size: 12px;
  line-break: anywhere;
  line-height: 1.2;
}
}

/*
*
* Home 
*
*/

.navbar-brand img {
  max-width: 200px;
}

/* Common CSS */

.container_custom {
  width: 80%;
  margin: 0 auto;
}

.bor_rad10 {
  border-radius: 10px;
}

.bor_rad50 {
  border-radius: 50px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.btn_primary {
  display: inline-block;
  text-align: center;
  background: var(--btn-primary);
  color: var(--white);
  text-decoration: none;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  /* box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78; */
  transition: 0.8s;
  color: #fff;
}

.btn_primary:hover {
  color: var(--white);
  transform: translateY(-10px);
}

.btn_secondary {
  display: inline-block;
  text-align: center;
  color: var(--blue);
  text-decoration: none;
  padding: 12px 33px;
  font-size: 18px;
  font-weight: 500;
  border: 2px solid var(--blue);
  transition: 0.5s;
}

.btn_secondary:hover {
  transform: translateY(-10px);
  background: var(--btn-primary);
  color: var(--white);
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/* Input Group */

.form_group {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
}

.form_group .form_icon {
  position: absolute;
  background: var(--blue);
  width: 45px;
  height: 45px;
  margin-left: 7.5px;
  margin-top: 7.5px;
  line-height: 45px;
  color: #fff;
  border-radius: 9px;
  font-size: 20px;
}

.form_group .form_control {
  width: 100%;
  font-size: 16px;
  min-height: 60px;
  padding: 0px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.form_group .form_control.has_icon {
  padding-left: 60px;
}

/* Navbar CSS */
.navigations {
  display: flex;
  justify-content: space-between;
  padding: 1.7rem 0rem;
  max-height: 100px;
  align-items: center;
}

.nav_menu ul {
  list-style-type: none;
  display: inline-block;
}

.nav_menu ul li {
  display: inline-block;
}

.nav_menu ul li a {
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  padding: 15px 20px;
  text-decoration: none;
  margin-right: 5px;
  color: var(--black);
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.nav_menu ul li a:hover {
  color: var(--blue);
}

.nav_menu ul li a.signup {
  display: inline-block;
  position: relative;
  background: var(--btn-primary);
  color: var(--white);
  padding: 15px 35px;
  box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78;
  transition: 0.5s;
}

.mob_menu {
  display: none;
}

.nav_menu ul li a.signup:hover {
  transform: translateY(-5px);
}

.mob_menu_shower {
  position: fixed;
  width: 0%;
  background: #000;
  right: 0;
  height: 100%;
  z-index: 99;
  transition: 0.5s;
}

.mob_menu_shower .closeMenu {
  position: absolute;
  opacity: 0;
  right: 10px;
  background: black;
  padding: 10px 10px;
  border: none;
  color: #fff;
  font-size: 20px;
  top: 15px;
  cursor: pointer;
}

.mob_menu_shower #menu_con {
  display: none;
}

.mob_menu_shower.show {
  width: 50%;
}

.mob_menu_shower.show .closeMenu {
  opacity: 1;
}

.mob_menu_shower.show #menu_con {
  display: block;
}

#menu_con {
  padding: 5rem 3rem;
}

#menu_con ul li {
  list-style-type: none;
  margin-bottom: 15px;
}

#menu_con ul li a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

#menu_con ul li a:hover {
  color: var(--red);
}

/* Hero Design */
.header {
  position: relative;
  width: 100%;
  z-index: 1;
  min-height: 90vh;
}

.header {
  background: linear-gradient(to bottom, #ffffff05, #ffffffeb 75%),
    url(https://res.cloudinary.com/de9bkrzj1/image/upload/v1660882763/increasefollower-assest/images/banner_bg_2_cifdds.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

#hero .hero_wraper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hero_wraper .hero_left .hero_content .small_title {
  margin-bottom: 15px;
}

.hero_wraper .hero_left .hero_content .small_title h3 {
  font-size: 20px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 10px;
  color: var(--black);
  background: rgb(239 239 239 / 50%);
}

.hero_wraper .hero_left .hero_content .hero_title h1 {
  font-family: var(--font);
  font-size: 50px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.2;
}

.highlight {
  color: var(--blue);
}

.highlight_red {
  color: var(--red);
}

.hero_wraper .hero_left .hero_content .hero_dsc p {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 15px;
}

#hero .hero_wraper .hero_right .hero_img img {
  width: 100%;
}

/* Banner Blur Background Maker*/
.banner_bg {
  width: 100%;
  z-index: -1;
  position: absolute;
  filter: blur(90px);
  overflow: hidden;
  max-height: 100%;
}

.banner_bg .color_ball {
  position: relative;
  z-index: -1;
  width: 422px;
  height: 422px;
  border-radius: 50%;
  top: -200px;
  left: 50px;
  background: linear-gradient(to bottom, #1690bd, #000480);
  opacity: 0.6;
}

.banner_bg .color_ball1 {
  position: absolute;
  z-index: -1;
  width: 422px;
  height: 422px;
  border-radius: 50%;
  top: 250px;
  left: 40%;
  background: linear-gradient(to bottom, #1690bd, #000480);
  opacity: 0.4;
}

.banner_bg .color_ball2 {
  position: relative;
  z-index: -1;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  top: -1000px;
  right: -1200px;
  background: linear-gradient(to bottom, #ff3232 40%, #6e1aac, #2b0fe4);
  opacity: 0.5;
}

/*End Banner Background*/

/* Login Section */

.login_box {
  position: relative;
}

.login_bg_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -2;
  border-radius: 20px;
  background: #dbdada;
  overflow: hidden;
}

.login_ball1 {
  position: absolute;
  z-index: 8;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  background: linear-gradient(to bottom right,
      var(--text-primary) 20%,
      #ad5adc);
  opacity: 1.1;
  filter: blur(20px);
}

.login_ball2 {
  position: absolute;
  z-index: 8;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  left: -60px;
  bottom: -60px;
  background: linear-gradient(to bottom right, #f93d95 20%, #ffa713);
  opacity: 1.1;
  filter: blur(20px);
}

.login_ball3 {
  position: absolute;
  z-index: 8;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  background: linear-gradient(to bottom right,
      var(--text-primary) 20%,
      #ad5adc);
  opacity: 1.1;
  box-shadow: rgb(225 225 221) 0px 0px 20px inset;

  z-index: -170;
}

.login_ball4 {
  position: absolute;
  z-index: 8;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  left: -60px;
  bottom: -60px;
  background: linear-gradient(to bottom right, #f93d95 20%, #ffa713);
  opacity: 1.1;
  z-index: -170;
  box-shadow: inset 0 0 35px #fff;
}

/* Login Box insiders*/

.login_box_wrapper {
  padding: 2rem;
}

#rememberBox {
  display: block;
}

#rememberBox .icons_remember {
  width: 100%;
  height: 70px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000;
  cursor: pointer;
  transition: 0.5s;
}

#remember:checked~.icons_remember {
  background: var(--text-primary) !important;
  color: var(--text-white);
}

.login_input_wrap .login_right_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn_login {
  height: 50px;
  border: none;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: 0;
  border-radius: 10px;
  /* box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78; */
  background: var(--btn-primary);
  cursor: pointer;
}

.login_input_wrap .login_left_wrap .login_group {
  width: 100%;
}

.login_input_wrap .login_left_wrap .login_group .login_input_def {
  width: 100%;
}

.login_group {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.login_icon {
  position: absolute;
  width: 60px;
  height: 60px;
  color: #fff;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: 5px;
  border-radius: 13px;
}

.login_group .login_input_def {
  font-size: 18px;
  height: 70px;
  border: 0px;
  padding-left: 70px;
  padding-right: 10px;
  border-radius: 15px;
  outline: none;
}

/* Sign Up Page Design */

.sign_up_wrap {
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 20px;
  background: rgba(200, 198, 198, 0.35);
  margin-bottom: 5rem;
  position: relative;
  min-width: 550px;
}

.sign_up_wrap .signup_title_wrap {
  margin-bottom: 2rem;
}

.signUpBgWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  filter: blur(25px);
  z-index: -1;
}

.signUpBgWrap .singup_bg {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -3%;
  left: -11%;
  background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
  border-radius: 50%;
  z-index: -1;
  overflow: hidden;
}

.sign_up_wrap .signup_title_wrap::after {
  content: "";
  width: 20%;
  height: 5px;
  background: var(--btn-primary);
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  transition: 0.5s;
  animation: widthChanger 15s infinite;
}

@keyframes widthChanger {
  0% {
    width: 20%;
  }

  25% {
    width: 50%;
  }

  50% {
    width: 20%;
  }

  75% {
    width: 50%;
  }

  100% {
    width: 20%;
  }
}

.sign_up_wrap .signup_title_wrap h2 {
  font-family: var(--font);
  font-size: 35px;
  color: var(--blue);
  font-weight: bold;
}

.sign_up_wrap .signup_title_wrap p {
  font-family: var(--font);
  font-size: 16px;
  color: var(--black);
  text-align: center;
}

.signup_field {
  width: 95%;
  margin: 0 auto;
}

.signup_field .form_group .form_control {
  background: #ffffffa6;
  outline: none;
  transition: 0.4s;
}

.signup_field .form_group .form_control:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 15px rgba(61, 57, 57, 0.25);
}

.signup_button {
  display: block;
  margin-top: 20px;
}

.signup_button .btn_signup {
  width: 100%;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* Feature Wrap */
.top_feature {
  margin: 5rem 0rem;
}

.top_feature_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  grid-column-gap: 3rem;
  justify-content: space-between;
}

.top_feature_item {
  text-align: center;
  background: rgba(207, 207, 207, 0.4);
  padding: 3rem 1.5rem;
  border-radius: 20px;
  position: relative;
  margin-bottom: 1.5rem;
}

.top_feature_item .top_feature_item_img img {
  width: 160px;
  max-height: 200px;
  margin: 0 auto;
}

.top_feature_item .top_feature_item_cont {
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 0rem;
  border-radius: 15px;
  margin-top: 18px;
  transition: 1s;
}

.top_feature_item .top_feature_item_cont h4 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: bold;
  color: var(--black);
}

.top_feature_item_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  filter: blur(25px);
}

.item_bg_ball {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
  border-radius: 50%;
  bottom: 30px;
  left: 30px;
  transition: 5s;
}

.top_feature_item:hover .item_bg_ball {
  width: 250px;
  height: 250px;
}

.top_feature_item:hover .top_feature_item_cont {
  background: #fff;
}

/* Best Section Style  */
.best_sec {
  background: url(https://res.cloudinary.com/honestsmm/image/upload/v1661534458/honestsmm-assets/bg-3_ayt3it.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.best_wraper .best_left {
  width: 50%;
}

.best_wraper .best_right {
  width: 50%;
}

.best_cont .best_top_small h3 {
  font-family: var(--font);
  font-size: 20px;
  color: var(--black);
  font-weight: bold;
}

.best_cont h2 {
  font-family: var(--font);
  font-size: 50px;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: bold;
}

.best_cont p {
  font-family: var(--font);
  color: var(--black);
  font-size: 16px;
  font-weight: normal;
}

.best_img_wrap img {
  width: 100%;
  float: right;
}

/* End SignUP Design */

/* Counter Sections */
#counterUp {
  padding: 5rem 0rem;
}

.counter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light-grey);
  padding: 10px;
  border-radius: 10px;
}

.counter_icon {
  width: 85px;
  height: 85px;
  background: var(--text-primary);
  border-radius: 8px;
  margin-right: 10px;
  text-align: center;
  line-height: 95px;
}

.counter_icon i {
  color: var(--white);
  font-size: 30px;
}

.counter_cont .odometer {
  font-family: var(--font);
  font-size: 30px;
  font-weight: bold;
  color: var(--black);
  transition: 1s;
}

.counter_cont h4 {
  font-family: var(--font);
  font-weight: normal;
  color: var(--red);
  transition: 1s;
}

.counter_item::before {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  background: linear-gradient(to bottom right, #ff3232, #6d0fe4 100%);
  right: 0;
  bottom: 0;
  border-radius: 12px;
  z-index: 0;
  transition: 0.5s;
}

.counter_item:hover::before {
  width: 100%;
  height: 100%;
}

.counter_item:hover .counter_cont h4 {
  color: var(--white);
}

.counter_item:hover .counter_cont .odometer {
  color: var(--white);
}

.count_number {
  font-size: 25px;
  font-weight: 800;
  color: var(--black);
}

.counter_content h5 {
  font-size: 18px;
  font-weight: normal;
  color: var(--text-black);
}

#socialMediaSec {
  padding: 5rem 0rem;
  background: transparent;
  position: relative;
}

#socialMediaSec .social_media_blur {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(100px);
  z-index: -1;
}

.social_media_blur .social_media_ball_bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
  border-radius: 50%;
  bottom: 0px;
  left: -150px;
}

.social_media_blur .social_media_ball_bg2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(to bottom, #1690bd, #000480);
  border-radius: 50%;
  top: 0px;
  right: 0px;
  opacity: 0.5;
}

.social_media_wrap {
  margin-bottom: 1.5rem;
}

.social_media_wrap .social_title_wrap {
  text-align: center;
}

.social_media_wrap .social_title_wrap h4 {
  font-family: var(--font);
  font-size: 20px;
  color: var(--black);
}

.social_media_wrap .social_title_wrap h2 {
  font-family: var(--font);
  font-size: 30px;
  color: var(--black);
}

.social_media_wrap .social_title_wrap p {
  font-family: var(--font);
  color: var(--black);
  font-size: 16px;
}

.social_media_btn_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-column-gap: 30px;
  margin-top: 3rem;
}

.social_btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--blue);
  background: transparent;
  font-size: 16px;
  text-align: center;
  color: var(--blue);
  font-weight: bold;
  font-family: var(--font);
  cursor: pointer;
  transition: 0.5s;
}

.social_btn:hover {
  background: var(--btn-primary);
  color: var(--white);
}

.social_btn.active {
  background: var(--btn-primary);
  color: var(--white);
}

/* Genral Feature Sections */
#genralFeature {
  padding: 5rem 0rem;
}

.gn_featuer_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.gn_featuer_wrap .gn_fetaure_item {
  background: #fff;
  padding: 2rem 2rem;
  text-align: center;
  box-shadow: 0 0 10px rgb(226, 221, 221);
  border-radius: 10px;
}

.gn_featuer_wrap .gn_fetaure_item .item_icon {
  width: 100%;
}

.gn_featuer_wrap .gn_fetaure_item .item_icon .icon_wrap {
  width: 80px;
  height: 80px;
  background: var(--btn-primary);
  text-align: center;
  font-size: 30px;
  line-height: 80px;
  color: var(--white);
  border-radius: 50px;
  margin: 0 auto;
  margin-bottom: 15px;
  box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78;
}

.gn_featuer_wrap .gn_fetaure_item .item_title h3 {
  font-family: var(--font);
  color: var(--black);
  font-size: 22px;
  margin-bottom: 8px;
}

.gn_featuer_wrap .gn_fetaure_item .item_title .item_cont p {
  font-family: var(--font);
  color: var(--black);
  font-size: 15px;
}

/**/
#easySections {
  padding: 5rem 0rem;
  position: relative;
}

.easy_wrap {
  position: relative;
  border-radius: 12px;
}

.easy_bg_blur {
  overflow: hidden;
}

.easy_wrap .easy_bg_blur {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -2;
  border-radius: 20px;
  background: #dbdada;
  overflow: hidden;
}

.easy_bg_blur .blur_ball {
  position: absolute;
  z-index: 8;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
  opacity: 1.1;
  filter: blur(20px);
}

.bg_ball {
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
  opacity: 1;
  z-index: -170;
  box-shadow: inset 0 0 20px #e1e1dd;
}

.easy_wrap .easy_inner_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  padding: 3rem;
  align-items: center;
}

.easy_title h4 {
  font-family: var(--font);
  font-size: 25px;
  color: var(--black);
  font-weight: 800;
}

.easy_title h2 {
  font-family: var(--font);
  font-size: 40px;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 800;
}

.easy_title p {
  font-family: var(--font);
  color: var(--black);
  font-size: 16px;
}

.easy_check_wrap {
  margin-top: 8px;
}

.easy_check_wrap .easy_check_item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.easy_check_wrap .easy_check_item i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--text-primary);
}

.easy_check_wrap .easy_check_item p {
  font-family: var(--font);
  color: var(--black);
  font-size: 16px;
}

.easy_right_img_wrap {
  width: 70%;
  overflow: hidden;
  margin: 0 auto;
  text-align: right;
}

/* Testimonials Sections */
#testimonialsSections {
  padding: 3rem 0rem;
}

.testimonial_title {
  text-align: center;
}

.testimonial_title h2 {
  font-family: var(--font);
  color: var(--black);
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: 800;
}

.testimonial_title p {
  font-family: var(--font);
  color: var(--black);
  font-size: 16px;
}

/*
  Lets get started sec
  */
.letGetStarted .bg_ball {
  top: -60px !important;
  left: -60px !important;
}

.letGetStarted .easy_bg_blur .blur_ball {
  top: -60px;
  left: -60px;
}

.let_start_wrap {
  display: flex;
  padding: 2rem 1rem;
  align-items: center;
  min-height: 500px;
}

.let_start_wrap .middle_start {
  width: 60%;
}

.let_start_wrap .let_start_wrap {
  width: 20%;
}

.let_start_wrap .right_start {
  width: 20%;
}

.let_start_wrap .middle_start .lets_start_cont {
  text-align: center;
}

.left_start .social_icon_warpers img {
  position: relative;
}

.left_start .social_icon_warpers img:first-child {
  top: -150px;
  left: 120px;
}

.social_icon_warpers img:last-child {
  top: 150px;
  left: -60px;
}

.social_icon_warpers2 img {
  position: relative;
}

.social_icon_warpers2 img:first-child {
  top: -150px;
  right: -40px;
}

.lets_start_cont h1 {
  font-family: var(--font);
  font-size: 35px;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 800;
}

.social_icon_warpers2 img:last-child {
  top: 150px;
  right: 150px;
}

/* Testimonials Card */
#testimonial {
  padding: 4rem 0rem;
  position: relative;
}

.testimonial_bg_blur {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(100px);
  z-index: -20;
}

.testimonial_bg_blur .blur_ball {
  position: absolute;
  width: 400px;
  height: 400px;
  left: -200px;
  background-image: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
  border-radius: 50px;
}

.testimonial_item {
  position: relative;
  background: rgba(236, 227, 227, 0.6);
  border-radius: 10px;
  width: 95%;
  margin: 0 auto;
  z-index: -10;
  backdrop-filter: blur(5px);
}

.item_yellow {
  position: absolute;
  width: 40px;
  height: 60px;
  background: #ffa713;
  bottom: 0;
  left: 6%;
  z-index: -1;
}

.item_yellow2 {
  position: absolute;
  width: 40px;
  height: 80px;
  background: #ffa713;
  top: 0;
  right: 6%;
  z-index: -1;
}

.testi_item_wrap {
  display: flex;
  padding: 1.5rem;
  align-items: center;
}

.testi_item_wrap .testi_left .user_img {
  width: 150px;
  height: auto;
  margin: 0;
  margin-right: 15px;
}

.testi_item_wrap .testi_left .user_img img {
  width: 100%;
}

.user_info .testi_username {
  margin-bottom: 5px;
}

.user_info .testi_username h3 {
  font-family: var(--font);
  color: var(--black);
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.user_info .testi_username p {
  font-family: var(--font);
  color: var(--black);
  font-size: 14px;
}

.user_info .ratings {
  margin-bottom: 10px;
}

.user_info .ratings .rattings_item {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00b67a;
  margin-right: 2px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}

.user_info .ratings .rattings_item i {
  color: #fff;
  font-size: 20px;
  z-index: 99;
}

/* footer inner wrap */
footer {
  min-height: 300px;
  display: flex;
  align-items: flex-start;
}

.footer_inner_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-column-gap: 45px;
}

.fo_deef_link ul {
  margin-top: 10px;
}

.fo_deef_link ul li {
  list-style-type: none;
}

.fo_deef_link h3,
.fo_contact h3 {
  font-family: var(--font);
  color: #000;
  font-size: 22px;
}

.fo_deef_link a {
  display: block;
  color: #000;
  font-size: 18px;
  margin-bottom: 5px;
  text-decoration: none;
}

.login_wraper {
  background: #ffffff85;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #ddd;
  width: 95%;
  margin: 0 auto;
}

#loginForm h3 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

#loginForm label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

#loginForm .form-control {
  padding: 10px 15px;
}

@media only screen and (max-width: 1150px) {
  .sign_up_wrap {
    width: 75%;
  }

  .sign_up_wrap {
    padding: 2rem 0rem;
  }

  .signup_field {
    width: 90%;
  }

  .top_feature_wrap {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  }
}

@media only screen and (max-width: 1080px) {
  .sign_up_wrap {
    width: 75%;
  }

  .signup_field {
    width: 90%;
  }

  .sign_up_wrap {
    padding: 3rem 0rem;
  }

  .sign_up_wrap .signup_title_wrap h2 {
    font-size: 25px;
  }

  .sign_up_wrap .signup_title_wrap p {
    font-size: 14px;
  }

  .top_feature_wrap {
    grid-column-gap: 1.5rem;
  }

  .top_feature_item .top_feature_item_img img {
    width: 150px;
    height: auto;
  }
}

@media only screen and (max-width: 991px) {
  .nav_menu {
    display: none;
  }

  .header {
    min-height: 60vh;
  }

  .mob_menu {
    display: block;
    position: absolute;
    right: 10%;
  }

  .menu_btn {
    font-size: 25px;
    padding: 8px 15px;
    border: none;
    background: var(--btn-primary);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
  }

  .mob_menu_shower.show {
    width: 40%;
  }

  .hero_wraper .hero_left .hero_content .small_title h3 {
    font-size: 15px;
  }

  .hero_wraper .hero_left .hero_content .hero_title h1 {
    font-size: 30px;
  }

  .hero_wraper .hero_left .hero_content .hero_dsc p {
    font-size: 15px;
  }

  .btn_primary {
    font-size: 15px;
    color: #fff;
  }

  .btn_secondary {
    font-size: 15px;
  }

  .hero_cta .btn_hero {
    width: 45%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .sign_up_wrap {
    width: 85%;
  }

  .sign_up_wrap {
    padding: 2rem 0rem;
  }

  .top_feature_item:hover .item_bg_ball {
    width: 90%;
    height: 80%;
  }

  .counter_wrap {
    grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
  }
}

@media only screen and (max-width: 768px) {
  .top_feature_wrap {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }

  .top_feature_item {
    padding: 2rem 1rem;
  }

  .top_feature_item .top_feature_item_img img {
    width: 100px;
    height: auto;
  }

  .best_wraper {
    flex-direction: column !important;
  }

  .best_wraper .best_left {
    width: 100%;
  }

  .best_wraper .best_right {
    width: 100%;
  }

  .best_cont {
    text-align: center;
  }

  .best_cont .best_top_small h3 {
    font-size: 18px;
    text-align: center;
  }

  .best_cont h2 {
    font-size: 30px;
  }

  .best_cont p {
    font-size: 14px;
  }

  .header {
    background-position: left;
  }

  .login_wraper {
    margin-top: 15px;
  }
}



  .mob_menu_shower.show {
    width: 80%;
  }

  #hero .hero_wraper {
    flex-direction: column;
  }

  #hero .hero_wraper .hero_left {
    width: 100%;
  }

  #hero .hero_wraper .hero_right {
    width: 100%;
  }

  .hero_wraper .hero_left .hero_content .small_title h3 {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }

  .hero_wraper .hero_left .hero_content .hero_title h1 {
    text-align: center;
    font-size: 30px;
  }

  .hero_wraper .hero_left .hero_content .hero_dsc p {
    text-align: center;
    font-size: 14px;
  }

  .btn_primary {
    font-size: 14px;
  }

  .btn_secondary {
    font-size: 14px;
  }

  .btn_hero {
    width: 45%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .hero_content {
    margin-top: 5rem;
  }

  .banner_bg .color_ball2 {
    top: 150px;
    right: 0;
  }

  .sign_up_wrap {
    width: 95%;
    min-width: 95%;
  }

  .counter_wrap {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  .counter {
    margin-top: 0rem;
  }
}

@media only screen and (max-width: 480px) {
  .top_feature_wrap {
    grid-template-columns: repeat(auto-fit, minmax(95%, 1fr));
  }

  .top_feature_item .top_feature_item_img img {
    width: 60px;
    height: auto;
  }

  .top_feature_item .top_feature_item_cont {
    margin-top: 5px;
    padding: 0.5rem 0rem;
    font-size: 16px;
  }

  .item_bg_ball {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 550px) {
  .login_group {
    height: 60px;
  }

  .login_input_wrap {
    flex-direction: column;
  }

  .login_input_wrap .login_left_wrap {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .login_input_wrap .login_left_wrap .login_group {
    width: 100%;
  }

  .login_box_wrapper {
    padding: 1rem;
  }

  .login_input_wrap .login_right_wrap {
    width: 100%;
    margin-top: 8px;
  }

  .login_group .login_input_def {
    height: 50px;
    padding-left: 50px;
    font-size: 16px;
  }

  .login_icon {
    width: 40px;
    height: 40px;
  }

  .btn_login {
    height: 50px;
  }

  .login_ball4,
  .login_ball2 {
    left: 0;
  }

  .login_ball1,
  .login_ball3 {
    right: 0;
  }

  .other_link {
    margin-top: 15px;
    text-align: center;
  }

  .social_media_btn_wrap {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-gap: 15px;
  }

  .social_media_wrap .social_title_wrap h4 {
    font-size: 18px;
  }

  .social_media_wrap .social_title_wrap h2 {
    font-size: 24px;
  }

  .social_media_wrap .social_title_wrap p {
    font-size: 14px;
  }

  .tabcontent {
    display: flex;
    flex-direction: column;
  }

  .tabcontent .tab_cont_left {
    text-align: center;
  }

  .tabcontent .tab_cont_left .tab_cont {
    text-align: center;
    font-size: 14px;
  }

  .tabcontent .tab_cont_left .tab_title h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .total_check_wrap {
    display: flex;
    flex-direction: column;
  }

  .total_check_wrap .tab_check_wrap .check_mar {
    border: 1px solid var(--red);
    font-size: 14px;
  }

  .tabcontent .tab_cont_right {
    text-align: center;
    margin-top: 20px;
  }

  .gn_featuer_wrap {
    grid-template-columns: 1fr;
  }

  .tabcontent .tab_cont_right .tab_img img {
    width: 100%;
  }

  .gn_featuer_wrap .gn_fetaure_item {
    padding: 1rem;
  }

  .gn_featuer_wrap .gn_fetaure_item .item_title h3 {
    font-size: 20px;
  }

  .gn_fetaure_item .item_cont p {
    font-size: 14px;
  }

  .easy_wrap .easy_inner_wrap {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }

  .easy_wrap .easy_title h4 {
    font-size: 18px;
    text-align: center;
  }

  .easy_wrap .easy_title h2 {
    font-size: 22px;
    text-align: center;
  }

  .easy_wrap .easy_title p {
    font-size: 14px;
  }

  .easy_check_wrap .easy_check_item i,
  .easy_check_wrap .easy_check_item {
    font-size: 14px;
  }

  .easy_right_img_wrap img {
    width: 100%;
  }

  .bg_ball,
  .easy_bg_blur .blur_ball {
    right: 0;
  }

  .testimonial_title h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .testimonial_title p {
    font-size: 14px;
  }

  .testi_item_wrap {
    flex-direction: column;
  }

  .item_yellow2 {
    right: 45%;
  }

  .testi_right {
    text-align: center;
  }

  .user_info .testi_username h3 {
    font-size: 20px;
  }

  .testi_des p {
    font-size: 14px;
  }

  .user_info .ratings .rattings_item {
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
  }

  .user_info .ratings .rattings_item i {
    font-size: 15px;
  }

  .let_start_wrap {
    flex-direction: column;
  }

  .let_start_wrap .middle_start {
    width: 100%;
  }

  .let_start_wrap {
    max-height: 250px;
  }

  .left_start .social_icon_warpers img:first-child {
    top: 0;
    left: 0%;
  }

  .social_icon_warpers img:last-child {
    top: 0;
    left: 0%;
  }

  .social_icon_warpers2 img:first-child {
    top: 0;
    right: 0;
  }

  .social_icon_warpers2 img:last-child {
    top: 0px;
    right: 0%;
  }

  .let_start_wrap .right_start {
    margin-top: 20px;
    width: 100%;
  }

  .let_start_wrap .left_start {
    margin-bottom: 20px;
    width: 100%;
  }

  .social_icon_warpers {
    display: flex;
    justify-content: space-between;
  }

  .social_icon_warpers2 {
    display: flex;
    justify-content: space-between;
  }
}

/*
 NEW CODES AFTER UPLOAD 
*/

.v2-footer {
  background: var(--bg-darkmode);
  padding: 5rem 0;
}

.footer_txt {
  color: #fff;
}

.social_media_links {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 25px;
  margin-top: 20px;
}

.social_media_links .social_media_item {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  background: #36364e;
  border-radius: 10px;
  color: var(--white);
  transition: 0.5s ease-in-out;
  text-decoration: none;
}

.social_media_links .social_media_item:hover {
  background: #5f1de8;
}

.footer_menu_title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.quick_Link .footer_link {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  padding: 3px 0px;
  transition: 0.5s ease-in-out;
}

.quick_Link .footer_link:hover {
  transform: translateX(10px);
}

/*
 Version 2.0
*/

:root {
  --primary-color-v2: #5f1de8;
  --primary-gradient-v2: linear-gradient(180deg, #5f1de8 0%, #450abf 100%);
  --secondary-color-v2: #ff7300;
  --footer-bg-v2: #070e24;
  --black-color-v2: #232323;
  --black-para-v2: #545454;
  --white-v2: #fff;
  --font-v2: "Poppins", sans-serif;
}

* {
  font-family: var(--font-v2);
}

/**/
.text-primary {
  color: var(--primary-color-v2) !important;
}

.text-secondary {
  color: var(--secondary-color-v2) !important;
}

.btn.btn-primary {
  padding: 15px 28px;
  background: var(--primary-gradient-v2);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  border: 0px !important;
  line-height: 1;
  transition: 0.5s;
}

.btn.btn-primary:hover {
  transform: translateY(-1px);
}

.btn.btn-white {
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  border: 0px !important;
  line-height: 1;
  transition: 0.5s;
  background: var(--white-v2);
}

.btn.btn-white:hover {
  transform: translateY(-1px);
}

.home_link {
  color: var(--primary-color-v2);
  text-decoration: none;
}

/**/
.new_v2 {
  background: #fafafa;
}

p {
  color: var(--black-para-v2);
}

/* Header */
header .navbar {
  background: var(--white-v2);
  padding: 5px 0px;
}

header .navbar .nav-item .nav-link {
  font-family: var(--font-v2);
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color-v2);
  padding: 8px 15px;
}

header .navbar .nav-item .nav-link:hover,
header .navbar .nav-item .nav-link.active {
  color: var(--primary-color-v2);
}

.signup_btn_wrap .signup_btn {
  background: var(--primary-color-v2) !important;
  color: var(--white-v2) !important;
  border-radius: 5px !important;
  padding: 8px 20px !important;
}

/* Hero Sections */
#hero_v2 {
  padding: 100px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/hero-main-bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

#hero_v2 .hero_content h1 {
  font-size: 65px;
  font-weight: 800;
  color: var(--black-color-v2);
  margin-bottom: 10px;
  line-height: 1.2;
}

#hero_v2 .hero_content p {
  font-size: 16px;
  color: var(--black-para-v2);
  margin-bottom: 10px;
  width: 80%;
}

#hero_v2 .hero_content .btn-primary.btn-w-login {
  margin-bottom: 15px;
}

#hero_v2 .hero_content .our_sev_pop {
  display: flex;
  gap: 10px;
  align-items: center;
}

#hero_v2 .hero_content .our_sev_pop .text {
  font-size: 16px;
  color: var(--black-para-v2);
  font-weight: 600;
}

#hero_v2 .login_card {
  background: var(--white-v2);
  width: 90%;
  margin: 0 auto;
  float: right;
  padding: 30px;
  border-radius: 15px;
  border: 0.5px solid #b4b4b4a4;
}

#hero_v2 .login_card .login_text {
  margin-bottom: 20px;
}

#hero_v2 .login_card .login_text h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--black-color-v2);
}

#hero_v2 .login_card .login_text p {
  color: var(--black-color-v2);
  font-weight: 600;
}

#hero_v2 .login_card .login_text p a {
  color: var(--primary-color-v2);
  text-decoration: none;
  font-weight: 700;
}

.form-home .form-group label {
  font-size: 18px;
  color: var(--black-color-v2);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-home .form-group .input_has_icon {
  position: relative;
}

.form-home .form-group .input_has_icon .icon {
  position: absolute;
  font-size: 28px;
  color: var(--black-para-v2);
  left: 10px;
  top: 6px;
}

.form-home .form-group .input_has_icon .form-control {
  background: var(--white-v2);
  border-radius: 8px;
  box-shadow: 0px 0px 9px 0px rgba(239, 239, 239, 0.25);
  padding-left: 45px;
}

.form-home p.text-lost-pwd {
  font-size: 16px;
  color: var(--black-para-v2);
  font-weight: 500;
}

.form-home p.text-lost-pwd a {
  color: var(--primary-color-v2);
  font-weight: bold;
  text-decoration: none;
}

/* Counter */
#counter_v2 {
  padding: 50px 0px;
  background: var(--white-v2);
}

#counter_v2 .counter__item {
  text-align: center;
}

#counter_v2 .counter__item .icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color-v2);
  border-radius: 80px;
  box-shadow: 0px 0px 10px 0px #c5c5c5;
  display: inline-flex;
  align-items: center;
  font-size: 40px;
  color: var(--white-v2);
  justify-content: center;
  margin-bottom: 10px;
}

#counter_v2 .counter__item p {
  font-size: 18px;
  color: var(--black-para-v2);
  font-weight: 600;
  margin-bottom: 3px;
}

#counter_v2 .counter__item h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-color-v2);
}

/* default Section */
#default_sections_v2 {
  padding: 100px 0px;
}

.default__text__content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color-v2);
  margin-bottom: 5px;
}

.default__text__content h2 {
  font-size: 45px;
  color: var(--black-color-v2);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.default__text__content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-para-v2);
  margin-bottom: 20px;
}

.default_image {
  text-align: right;
}

/* About Us */
.about-us {
  background: url(https://cdn.fexpink.com/smmgen/images/about-sec-shades.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

/* Our Services */
#our_services {
  padding: 100px 0px;
}

.service_nav_tabs_wrap {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(175, 175, 175, 0.25);
}

.service_nav_tabs_wrap .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid #ddd;
}

.service_nav_tabs_wrap .nav-link .text {
  color: var(--black-color-v2);
  font-weight: 600;
  display: none;
}

.service_nav_tabs_wrap .nav-link.active {
  background: var(--white-v2);
  border-color: var(--primary-color-v2);
  color: var(--black-color-v2);
  box-shadow: 0px 0px 10px 0px rgba(140, 140, 140, 0.3);
}

.service_nav_tabs_wrap .nav-link.active .text {
  display: block;
}

.service_content_wrap {
  padding-top: 30px !important;
}

.service__signle__image {
  text-align: right;
}

.service_content_wrap .service_content h4 {
  color: var(--white-v2) !important;
}

.service_content_wrap .service_content h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--black-color-v2);
  margin-bottom: 10px;
}

.service_content_wrap .service_content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-para-v2);
  margin-bottom: 10px;
}

/* Service Content Wrap */
#cta_v2 {
  padding: 130px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/bg-shades.png),
    linear-gradient(#070e24, #070e24);
  background-size: contain;
}

#cta_v2 .text_wrap_cta p,
#cta_v2 .text_wrap_cta h2 {
  color: var(--white-v2);
}

#cta_v2 .text_wrap_cta .btn-white {
  background: var(--white-v2);
}

/* Why Choose Us */
#whyChooseUs_v2 {
  padding: 100px 0px;
}

.card_why_choose {
  height: 100%;
  border-radius: 15px;
  border: 0.5px solid #d6d6d6;
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.15);
}

.card_why_choose .icon {
  margin-bottom: 10px;
}

.card_why_choose .icon>img {
  width: 70px;
  height: 70px;
}

.card_why_choose h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.card_why_choose p {
  font-size: 14px;
  color: var(--black-para-v2);
}

/* SMM Panel Pricing */
.smmapnel_pricing {
  background: var(--white-v2);
}

#howToOrder_v2 {
  padding: 0px 0px;
}

#howToOrder_v2 .how_to_content_top_wrap {
  padding: 70px 0px;
  background: var(--primary-color-v2);
}

#howToOrder_v2 .how_to_content_top_wrap h2 {
  color: var(--white-v2);
  text-align: center;
  margin-bottom: 5px;
}

#howToOrder_v2 .how_to_content_top_wrap p {
  color: var(--white-v2);
  text-align: center;
  margin-bottom: 60px;
}

.how_to_step {
  transform: translateY(-70px);
  max-height: calc(100% - 70px);
}

.how-it-works-cta {
  transform: translateY(-40px);
}

.how_to_step .step_wraper {
  position: relative;
  padding: 15px;
  height: 100%;
  background: var(--white-v2);
  box-shadow: 0px 0px 10px 0px rgba(157, 157, 157, 0.25);
  border-radius: 10px;
  padding-bottom: 50px;
}

.how_to_step .step_wraper .step_number {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  border: 1px solid var(--white-v2);
  background: var(--secondary-color-v2);
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: center;
  color: var(--white-v2);
  transform: translateY(-50px);
  position: absolute;
  left: calc(50% - 35px);
}

.how_to_step .step_wraper .step_icon {
  padding-top: 40px;
  text-align: center;
  margin-bottom: 10px;
}

.how_to_step .step_wraper h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.how_to_step .step_wraper p {
  font-size: 16px;
  color: var(--black-para-v2);
  text-align: center;
}

#testimonials_v2 {
  padding: 100px 0px;
  position: relative;
}

#testimonials_v2 .here_bg {
  position: absolute;
  top: -100%;
  width: 100%;
  z-index: -1;
}

#testimonials_v2 .here_bg img {
  width: 100%;
}

.testimonials_top_wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

#prevSlideP {
  transform: rotate(180deg);
}

#prevSlideP,
#prevSlideN {
  width: 40px;
  border: none;
  background: none;
}

#prevSlideP:disabled img,
#prevSlideN:disabled img {
  opacity: 0.5;
}

.card.testimonial_card {
  padding: 10px;
  width: 98%;
  margin: 0 auto;
  background: var(--white-v2);
  border-radius: 15px;
  box-shadow: 0px 0px 8px rgba(197, 197, 197, 0.25);
  margin-top: 20px;
  margin-bottom: 20px;
  height: 100%;
  min-height: 340px;
}

.card.testimonial_card p {
  font-size: 16px;
  color: var(--black-para-v2);
  margin-bottom: 15px;
}

.card.testimonial_card .testimonial_user {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card.testimonial_card .testimonial_user .user_info h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
  color: var(--black-color-v2);
}

.card.testimonial_card .testimonial_user .user_info small {
  font-size: 12px;
  color: var(--black-para-v2);
}

.card.testimonial_card .testimonial_user .stars {
  font-size: 14px;
  color: var(--secondary-color-v2);
  background: var(--white-v2);
  box-shadow: 0 0 10px #ececec;
  padding: 5px 10px;
  border-radius: 50px;
}

/* Blog Page Design */
#readBlog_v2 {
  padding-bottom: 100px;
}

.card.blog_card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.25);
}

.card.blog_card .card-title a,
.card.blog_card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black-color-v2);
  text-decoration: none;
}

.card.blog_card .card-text {
  font-size: 14px;
  color: var(--black-para-v2);
  margin-bottom: 8px;
}

.card.blog_card .btn.btn.btn-primary.btn-sm {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
}

#blog_Post {
  padding: 50px 0px;
}

h1.blog_title_page {
  font-size: 48px;
  color: var(--text-black);
  font-weight: 700;
  width: 70%;
  margin-bottom: 15px;
}

.blog_image img {
  width: 100%;
  border-radius: 30px;
  margin-bottom: 30px;
}

/* faq */
#faq_v2 {
  padding: 100px 0px;
  padding-bottom: 150px;
}

#faq_v2 .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.25);
}

#faq_v2 .accordion-item .accordion-button.collapsed {
  border-radius: 10px;
}

#faq_v2 .accordion-item .accordion-button {
  font-size: 16px;
  font-weight: bold;
  box-shadow: none;
  border-radius: 10px 10px 0px 0px;
}

#faq_v2 .accordion-item .accordion-body {
  font-size: 14px;
}

#faq_v2 .accordion-button:not(.collapsed) {
  color: var(--primary-color-v2);
  background-color: rgb(95 29 232 / 16%);
}

/* Footers */

footer {
  background: var(--footer-bg-v2);
  position: relative;
  padding: 70px 0px;
}

footer .top_logo {
  text-align: center;
}

.top_logo {
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
}

.top_logo .top_logo_inner {
  width: 80px;
  height: 80px;
  background: #070e24;
  border-radius: 50px;
  border: 1px solid var(--primary-color-v2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_logo .top_logo_inner img {
  width: 50px;
  height: 50px;
}

footer .footer_txt .footer_logo {
  width: 200px;
  margin-bottom: 15px;
}

footer .footer_txt p {
  font-size: 14px;
  color: var(--white-v2);
  margin-bottom: 15px;
}

.social_media_links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.social_media_links li {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--white-v2);
  display: flex;
  justify-content: center;
}

.footer_link_wrap h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white-v2);
  font-weight: bold;
}

.footer_link_wrap .footer_menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer_link_wrap .footer_menu li a {
  display: block;
  font-size: 16px;
  text-decoration: none;
  color: var(--white-v2);
  margin-bottom: 5px;
  transition: 0.5s;
}

.footer_contact {
  list-style: none;
  margin: 0px;
  padding: 0;
}

.footer_contact li {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.footer_contact li .icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.footer_contact li .icon.has_bg {
  background: #13214e;
}

.footer_contact li .footer_menu_item {
  font-size: 14px;
  color: var(--white-v2);
  font-weight: 400;
  text-decoration: none;
}

.hr__foooter {
  background-color: var(--white-v2);
}

.sm-footer-text {
  font-size: 14px;
}

.footer_links_bottom {
  display: flex;
  gap: 10px;
  justify-content: end;
  font-size: 14px;
}

.footer_links_bottom a {
  text-decoration: none;
  color: var(--white-v2);
  transition: 0.5s;
}

.footer_link_wrap .footer_menu li a:hover,
.footer_links_bottom a:hover {
  color: var(--secondary-color-v2);
}

/* signup page */
#signup_v2 {
  padding: 100px 0px;
  padding-bottom: 180px;
  background: linear-gradient(#ffffff4f, #ffffff4d),
    url(https://cdn.fexpink.com/smmgen/images/signup-background.png), #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.signup_titles h1 {
  font-size: 65px;
  font-weight: 800;
  color: var(--black-color-v2);
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
}

.signup_titles p {
  font-size: 16px;
  text-align: center;
  color: var(--black-para-v2);
}

.signup_box {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}

/* Page Banner */
#page_banner {
  padding: 50px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/banner-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

#page_banner .banner_text_content h4 {
  font-size: 20px;
  color: var(--primary-color-v2);
  font-weight: 700;
  margin-bottom: 8px;
}

#page_banner .banner_text_content h1 {
  font-size: 45px;
  color: var(--black-color-v2);
  font-weight: 700;
  margin-bottom: 10px;
}

#page_banner .banner_text_content p {
  font-size: 14px;
  color: var(--black-para-v2);
  margin-bottom: 15px;
}

#page_banner .banner_image {
  text-align: right;
}

#aboutServices {
  padding: 100px 0px;
}

#aboutServices .card.card_serv_item {
  height: 100%;
  border-radius: 10px;
  border: 0.5px solid #d6d6d6;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.15);
}

#aboutServices .card.card_serv_item .icon {
  width: 80px;
  height: 80px;
}

#aboutServices .card.card_serv_item h3 {
  font-size: 18px;
  color: var(--black-color-v2);
  font-weight: 700;
  margin-bottom: 8px;
}

#aboutServices .card.card_serv_item p {
  font-size: 16px;
  color: var(--black-para-v2);
  line-height: 1.5;
}

#howToContact {
  padding: 100px 0px;
}

#howToContact .banner_text_content h2 {
  font-size: 45px;
  color: var(--black-color-v2);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}

#howToContact .card.card_contact {
  height: 100%;
  border-radius: 15px;
  border: 0.5px solid #d6d6d6;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.25);
}

#howToContact .card.card_contact .card-body {
  padding: 25px;
}

#howToContact .card.card_contact .icon {
  width: 100px;
  margin-bottom: 8px;
}

#howToContact .card.card_contact h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--black-color-v2);
  margin-bottom: 10px;
}

#howToContact .card.card_contact p {
  font-size: 16px;
  color: var(--black-para-v2);
  margin-bottom: 0px;
}

#followSocialMedia {
  margin-bottom: 100px;
}

#followSocialMedia .follow_section_wraper {
  padding: 70px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images//bg-shades.png),
    linear-gradient(#070e24, #070e24);
  background-size: contain;
  border-radius: 20px;
}

/* page title */
#page_top_banner {
  padding: 60px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/top-section-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#page_top_banner .page__title__all {
  text-align: center;
}

#page_top_banner .page__title__all h1 {
  font-size: 45px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

#page_top_banner .page__title__all p {
  font-size: 16px;
  font-weight: normal;
  color: var(--black-para-v2);
  line-height: 1.5;
}

#terms_content {
  padding: 70px 0px;
}

#terms_content .tems_items {
  margin-bottom: 30px;
}

#terms_content .tems_items h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--black-color-v2);
  margin-bottom: 8px;
}

/* Responsive area starting from here.*/
@media only screen and (max-width: 1440px) {
  #hero_v2 {
    padding: 90px 0px;
  }

  #page_top_banner .page__title__all h1,
  #hero_v2 .hero_content h1 {
    font-size: 55px;
  }

  #counter_v2 {
    padding: 30px 0px;
  }

  #counter_v2 .counter__item .icon {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }

  #counter_v2 .counter__item h4 {
    font-size: 24px;
  }

  #aboutServices,
  #our_services,
  #cta_v2,
  #whyChooseUs_v2,
  #default_sections_v2,
  #testimonials_v2,
  #readBlog_v2,
  #faq_v2,
  #default_sections_v2 {
    padding: 80px 0px;
  }

  #hero_v2 .login_card {
    width: 95%;
    padding: 25px;
  }

  #hero_v2 .login_card .login_text {
    margin-bottom: 15px;
  }

  #page_banner .banner_text_content h1,
  .default__text__content h2 {
    font-size: 35px;
  }

  #faq_v2 .accordion-item .accordion-button {
    font-size: 14px;
  }

  #terms_content .tems_items h3,
  #aboutServices .card.card_serv_item h3,
  .card.blog_card .card-title,
  .how_to_step .step_wraper h3 {
    font-size: 18px;
  }

  .btn.btn.btn-primary {
    font-size: 16px;
  }

  #terms_content .tems_items h3 {
    margin-bottom: 10px;
  }

  #howToContact .card.card_contact .icon {
    width: 90px;
  }

  h1.blog_title_page {
    font-size: 32px;
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {

  #page_top_banner .page__title__all h1,
  #hero_v2 .hero_content h1 {
    font-size: 48px;
  }

  #hero_v2 .login_card {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  #hero_v2 {
    padding: 70px 0px;
  }

  .hero_content {
    text-align: center;
  }

  #page_top_banner .page__title__all h1,
  #hero_v2 .hero_content h1 {
    text-align: center;
  }

  #hero_v2 .hero_content p {
    width: 100%;
    text-align: center;
  }

  #hero_v2 .hero_content .our_sev_pop {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
  }

  #counter_v2 .counter__item:first-child {
    margin-bottom: 20px;
  }

  #counter_v2 .counter__item:nth-child(2) {
    margin-bottom: 20px;
  }

  .about-us {
    background-position: 0px 500px;
  }

  .service_content_wrap .service_content h2 {
    font-size: 24px;
  }

  .default__text__content p,
  .service_content_wrap .service_content p {
    font-size: 14px;
  }

  #page_top_banner .page__title__all p,
  #aboutServices .card.card_serv_item p,
  p {
    font-size: 14px;
  }

  p br {
    display: none;
  }

  .default_image {
    text-align: center;
  }

  .default_image img {
    max-width: 350px;
  }

  .how_to_step .step_wraper:first-child {
    margin-bottom: 50px;
  }

  .how_to_step .step_wraper {
    height: auto;
  }

  .testimonials_top_wraper .text_right {
    width: 100px;
  }

  .card.testimonial_card {
    min-height: 250px;
  }

  #terms_content,
  #aboutServices,
  #howToContact,
  #our_services,
  #cta_v2,
  #whyChooseUs_v2,
  #default_sections_v2,
  #testimonials_v2,
  #readBlog_v2,
  #faq_v2,
  #default_sections_v2 {
    padding: 50px 0px;
  }

  footer .footer_txt {
    text-align: center;
  }

  footer .social_media_links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .sm-footer-text {
    text-align: center;
    margin-bottom: 8px;
  }

  .footer_links_bottom {
    justify-content: center;
  }

  #page_banner .banner_image {
    display: none;
  }

  #page_banner .banner_text_content h1,
  .default__text__content h2 {
    font-size: 24px;
  }

  .default__text__content h4 {
    font-size: 18px;
  }

  #terms_content .tems_items h3,
  #aboutServices .card.card_serv_item h3,
  .card.blog_card .card-title,
  .how_to_step .step_wraper h3,
  #terms_content .tems_items h3,
  #aboutServices .card.card_serv_item h3,
  .card.blog_card .card-title,
  .how_to_step .step_wraper h3 {
    font-size: 16px;
  }

  #howToContact .banner_text_content h2,
  #page_top_banner .page__title__all h1,
  #hero_v2 .hero_content h1 {
    font-size: 35px;
  }

  #page_banner.contact-us .banner_image {
    display: block;
  }

  #followSocialMedia .follow_section_wraper {
    padding: 50px 50px;
  }

  h1.blog_title_page {
    font-size: 28px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .service__signle__image {
    margin-top: 30px;
    text-align: center;
  }
}

@media only screen and (max-width: 550px) {

  #signup_v2,
  #hero_v2 {
    padding: 50px 0px;
  }

  .hero_content {
    margin-top: 0rem;
  }

  .signup_titles h1,
  #howToContact .banner_text_content h2,
  #page_top_banner .page__title__all h1,
  #hero_v2 .hero_content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  #howToOrder_v2 .how_to_content_top_wrap h2,
  #page_banner .banner_text_content h1,
  .default__text__content h2 {
    font-size: 28px;
  }

  .signup_box {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }


  #counter_v2 .counter__item h4 {
    font-size: 16px;
  }

  #cta_v2 .text_wrap_cta .btn-white,
  .btn.btn.btn-primary {
    font-size: 14px;
  }

  .card_why_choose h3,
  .service_content_wrap .service_content h2 {
    font-size: 18px;
  }

  .service_content_wrap .service_content h2 {
    margin-bottom: 3px;
  }

  .service__signle__image {
    text-align: center;
  }

  .service__signle__image img {
    width: 250px;
  }

  #cta_v2 .text_wrap_cta .btn-white,
  .btn.btn-primary {
    padding: 15px 25px;
    border-radius: 8px;
  }

  #hero_v2 .login_card {
    padding: 20px 15px;
  }

  .form-home .form-group label {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .form-home .form-group .input_has_icon .icon {
    font-size: 20px;
    top: 8px;
  }

  .form-home .form-group .input_has_icon .form-control {
    padding-left: 32px;
  }

  #counter_v2 .counter__item .icon {
    width: 65px;
    height: 65px;
    margin-bottom: 2px;
  }

  .service_nav_tabs_wrap .nav-link {
    padding: 8px 10px;
    gap: 5px;
  }

  #page_banner .banner_text_content h1 br,
  .default__text__content h2 br {
    display: none;
  }

  .card_why_choose {
    padding: 0;
  }

  .card_why_choose .icon>img {
    width: 50px;
    height: auto;
  }

  .default_image img {
    max-width: 280px;
  }

  .how_to_step .step_wraper .step_icon {
    width: 50px;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .how_to_step .row .col-lg-3:last-child .step_wraper {
    margin-bottom: 0px;
  }

  .testimonials_top_wraper {
    flex-direction: column;
    padding-bottom: 10px;
  }

  #testimonials_v2 .default__text__content h2,
  #testimonials_v2 .default__text__content h4 {
    text-align: center !important;
  }

  .card.testimonial_card {
    min-height: 330px;
  }

  .card.testimonial_card .testimonial_user {
    flex-direction: column-reverse;
    align-items: start;
    gap: 5px;
  }

  .footer_link_wrap {
    margin-bottom: 30px;
  }

  #page_banner .banner_image {
    display: block;
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .default_image {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .our-team .d-flex,
  .our-mission .d-flex {
    flex-direction: column-reverse;
  }

  h1.blog_title_page {
    font-size: 22px;
    width: 100%;
  }

  .blog_image img {
    border-radius: 15px;
  }
}


.link {
  color: var(--text-primary);
  text-decoration: none;
}

:root {
  --primary-color-v3: #5f1de8;
  --primary-gradient-v3: linear-gradient(180deg, #5f1de8 0%, #450abf 100%);
  --gray: #545454;

}

.v3 section {
  padding: 100px 0;
}

.new_v3 {
  background: #FAFAFA;
}

.text-blue {
  color: var(--primary-color-v3);
}

* {
  font-family: Poppins;
}

/* Hero Sections */
#hero_v3 {
  padding: 100px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/v3/banner_background.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

/* #counter_v3 {
  padding: 100px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/hero-main-bg.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
} */

#hero_v3 .hero_content h1,
#default_sections_v3 h1,
#why_us_v3 h1 {
  font-size: 55px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 10px;
  line-height: 1.1;
}

#default_sections_v3 h1,
#why_us_v3 h1 {
  font-size: 52px;
}

#hero_v3 p {
  font-size: 18px;
}

#hero_v3 .link {
  font-weight: 500;
}

/* #counter_v3 .hero_content p {
  font-size: 16px;
  color: var(--black-para-v3);
  margin-bottom: 10px;
  width: 80%;
} */
#hero_v3 .form-group,
#hero_v3 label {
  margin-bottom: 0 !important;
}

.form-home .form-group .input_has_icon {
  position: relative;
}

.form-home .form-group .input_has_icon .icon {
  position: absolute;
  font-size: 28px;
  color: var(--black-para-v2);
  left: 10px;
  top: 10px;
}

.form-home .form-group .input_has_icon .form-control {
  background: var(--white-v2);
  border-radius: 8px;
  box-shadow: 0px 0px 9px 0px rgba(239, 239, 239, 0.25);
  padding-left: 45px;
  font-size: 18px;
}

.input_has_icon .icon iconify-icon {
  color: var(--blue);
}

.form-home .form-group label,
#counter_v3 .hero_content p,
.text-lost-pwd {
  color: var(--black-color-v2) !important;
  font-weight: 400 !important;
}

#hero_v3 .btn-primary {
  font-weight: 500;
  font-size: 20px;
}

#counter_v3 .btn-primary {
  border-radius: 8px;
}

button.button_has_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Counter */
#counter_v3 {
  padding: 50px 0px;
}

#counter_v3 .counter__item {
  text-align: center;
  background: var(--primary-gradient-v3);
  border-radius: 20px;
  padding: 45px 35px;
  height: 100%;
}

#counter_v3 .counter__item .icon {
  width: 80px;
  height: 80px;
  background: var(--white-v2);
  border-radius: 80px;
  display: inline-flex;
  align-items: center;
  font-size: 40px;
  color: var(--primary-color-v2);
  justify-content: center;
  margin-bottom: 10px;
}

#counter_v3 .counter__item p {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 3px;
  text-align: left;
}

#counter_v3 .counter__item h4 {
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  margin-top: 10px;
}

.icon_container {
  display: flex;
  justify-content: flex-start;
}


/* about us */
#default_sections_v3 {
  padding: 100px 0px;
}

.default__text__content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color-v2);
  margin-bottom: 5px;
}

.default__text__content h2 {
  font-size: 52px;
  color: var(--black-color-v2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.default__text__content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-para-v2);
  margin-bottom: 20px;
}


/* our service */

#our_service_v3 .our-service-bottom-img {
  text-align: right;
  margin-top: 100px;
}

#our_service_v3 .our-service-bottom-img img {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#our_service_v3 .our-service-bottom-img.srv-2 img {
  width: 250px;
}


#our_service_v3 .default__text__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #FFF;
  box-shadow: 0px 0px 14px 0px rgba(183, 183, 183, 0.26);
  padding: 40px;
  border-radius: 22px;
  overflow: hidden;
}

.service_nav_tabs_wrap .nav-link .text {
  display: block;
}

/* Service Content Wrap */
#cta_v3 {
  padding: 130px 0px;
  background: url(https://cdn.fexpink.com/smmgen/images/bg-shades.png),
    linear-gradient(#070e24, #070e24);
  background-size: contain;
}

#cta_v3 .text_wrap_cta p,
#cta_v3 .text_wrap_cta h2 {
  color: var(--white-v2);
}

#cta_v3 .text_wrap_cta .btn-white {
  background: var(--white-v2);
}

/*  */
#whyChooseUs_v3 {
  padding: 100px 0px;
}

#whyChooseUs_v2 p {
  font-size: 16px;
}

/* how to order */
#howToOrder_v3 {
  padding: 0px 0px;
}

#howToOrder_v3 .how_to_content_top_wrap {
  padding: 70px 0px;
}

#howToOrder_v3 .how_to_content_top_wrap h2 {
  color: var(--text-black);
  text-align: center;
  margin-bottom: 5px;
}

#howToOrder_v3 .how_to_content_top_wrap p {
  color: var(--text-black);
  text-align: center;
  margin-bottom: 60px;
}

#howToOrder_v3 .how_to_step {
  transform: unset;
}

.btn.btn-primary {
  font-weight: 500;
  background: var(--primary-gradient-v3);
}

#default_sections_v3 {
  background: var(--white);
}


.service_nav_tabs_wrap .nav-link {
  min-width: 180px;
}


.telegram_channel {
  font-size: 30px;
}

.select2-container .select2-selection__text{
  font-size: 14px;
}


/* Medium screens (tablets, 768px and up) */
@media only screen and (max-width: 991px) {
  .card_why_choose .icon>img {
    width: auto;
  }

  .btn.btn-primary,
  .btn.btn-white {
    padding: 14px 24px;
  }

  #hero_v3 p,
  #counter_v3 .counter__item p,
  .btn.btn.btn-primary,
  .btn.btn-white,
  #whyChooseUs_v2 p {
    font-size: 14px;
  }

  #hero_v3 .btn-primary {
    font-weight: 500;
    font-size: 14px;
  }

  #counter_v3 .counter__item {
    padding: 35px 25px;
  }

  .form-home .form-group label {
    font-size: 14px;
  }

  #counter_v3 .counter__item h4 {
    font-size: 35px;
  }

  .footer_link_wrap .footer_menu li a {
    font-size: 14px;
  }

  #hero_v3,
  #counter_v3,
  #cta_v3,
  #default_sections_v3,
  #whyChooseUs_v3,
  #howToOrder_v3 {
    padding: 60px 0px;
  }

  .default__text__content h2 {
    font-size: 36px;
  }

  .default__text__content p {
    font-size: 14px;
  }

  .our-service-bottom-img {
    margin-top: 50px;
  }

  .our-service-bottom-img img {
    width: 150px;
  }


  .form-home .form-group .input_has_icon .form-control {
    font-size: 16px;
    padding-left: 40px;
  }

  .form-home .form-group .input_has_icon .icon {
    font-size: 24px;
    top: 8px;
  }

  .service_nav_tabs_wrap .nav-link {
    min-width: 140px;
  }

  .how_to_step .step_wraper p {
    font-size: 12px !important;
  }
}

@media only screen and (max-width: 575px) {
  .default__text__content h2 {
    font-size: 28px;
  }

  .default__text__content p {
    font-size: 14px;
  }

  .our-service-bottom-img img {
    width: 100px;
  }


  .form-home .form-group .input_has_icon .form-control {
    font-size: 14px;
    padding-left: 35px;
  }

  .form-home .form-group .input_has_icon .icon {
    font-size: 24px;
    top: 9px;
    left: 7px;
  }

  .service_nav_tabs_wrap .nav-link {
    min-width: 150px;
  }

  .telegram_channel{
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  #counter_v3 .counter__item .icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  #howToOrder_v3 .how_to_content_top_wrap {
    padding: 0;
  }

  #hero_v3 .hero_content h1,
  #default_sections_v3 h1,
  #why_us_v3 h1 {
    font-size: 45px;
  }

  .v3 section {
    padding: 50px 0 !important;
  }

  #counter_v3 .counter__item h4 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 575px) {

  #hero_v3 .hero_content h1,
  #default_sections_v3 h1,
  #why_us_v3 h1 {
    font-size: 32px;
  }

  #counter_v3 .counter__item h4 {
    font-size: 20px;
  }

  .footer_links_bottom {
    flex-direction: column;
    align-items: center;
  }

  #counter_v3 .counter__item {
    padding: 25px 20px;
    border-radius: 15px;
  }

  #counter_v3 .counter__item h4 {
    margin-top: 0px;
  }

  #our_service_v3 .default__text__content {
    padding: 30px 25px;
    border-radius: 15px;
  }
}