/*#region ----------------- X) General */
@import url(../css/fontiran.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: IRANYEKAN !important;
  font-weight: 300;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: IRANYEKAN !important;
}

h1 {
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
}

b,
strong {
  font-weight: bolder;
}

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

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #2fac66;
  color: white;
}

::selection {
  background-color: #2fac66;
  color: white;
}

.fixedposition {
  overflow: hidden;
  padding-right: 17px;
}

.custom-scollbar {
  scrollbar-color: white rgba(255, 255, 255, 0.3);
  scrollbar-width: thin;
}
.custom-scollbar::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
}
.custom-scollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: white;
}

.alert p {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
}

/*#endregion -------------- X) General */
/*#region ----------------- Buttons Styles */
.btn {
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  border-color: transparent;
  font-size: 14px;
  font-weight: 500;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .fi {
  line-height: 0 !important;
  position: relative;
  display: inline-block;
  top: 3px;
  margin: 0 7px;
}

.fi {
  display: inline-block;
}

.btn-primary {
  background-color: #730a96;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #2fac66;
}

.btn-primary-outline {
  background-color: transparent;
  color: #730a96;
  border-color: #730a96;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background-color: #730a96;
  color: white;
}

.btn-secondary {
  background-color: #2fac66;
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #24844e;
  color: white;
}

.btn-secondary-outline {
  background-color: transparent;
  color: #2fac66;
  border-color: #2fac66;
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus {
  background-color: #2fac66;
  color: white;
}

.btn-side-collapse {
  width: 100%;
  text-align: right;
  position: relative;
  font-size: 13px;
  color: #212529;
  background-color: white;
  border: none;
  padding: 0.5rem 0;
}
.btn-side-collapse::before {
  content: "\f227";
  font-family: "uicons-regular-rounded";
  font-size: 20px;
  line-height: 0;
  position: relative;
  top: 6px;
}
.btn-side-collapse.collapsed::before {
  content: "\f24d";
}
.btn-side-collapse:hover {
  color: #730a96;
}

.btn-collapse {
  border: none;
  background-color: white;
  width: 100%;
  text-align: right;
  position: relative;
}
.btn-collapse .title {
  font-size: 15px;
  font-weight: 600;
  color: #2fac66;
  margin-bottom: 0;
}
.btn-collapse .title .fi {
  position: relative;
  top: 4px;
  margin-left: 5px;
  color: #730a96;
  font-size: 20px;
  line-height: 0;
}
.btn-collapse .icon {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transition: all 0.2s ease;
  color: #909294;
}
.btn-collapse:hover {
  color: #730a96;
  transition: all 0.2s ease;
}
.btn-collapse.collapsed .icon {
  transform: rotate(0deg);
  left: -4px;
  transition: all 0.2s ease;
}

/*#endregion -------------- Buttons Styles */
/*#region ----------------- Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes swipeup {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipleft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes swipeupsmall {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeRightsmall {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shake-shake {
  0% {
    transform: translateX(-3px);
  }
  20% {
    transform: translateX(3px);
  }
  40% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  80% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Navbar */
.myNavbar {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 8px 0;
  z-index: 120;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.myNavbar.scroll-navbar {
  background-color: white;
  transition: 0.3s ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.myNavbar.scroll-navbar.transparent {
  background-color: white;
  box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.05);
}
.myNavbar.scroll-navbar .header-inner #desktop-search-content .btn-show-search {
  color: #707275;
  background-color: transparent;
}
.myNavbar.transparent {
  background-color: transparent;
  box-shadow: none;
}
.myNavbar.transparent .header-inner .links .link-list .item a {
  color: #212529;
}
.myNavbar.transparent .header-inner .mobile-links .btn-mobile-menu {
  color: #212529;
}
.myNavbar.transparent .header-inner .user-login .login .user-link {
  color: #212529;
}
.myNavbar .header-inner {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 150px;
  align-items: center;
}
.myNavbar .header-inner .logo a {
  display: flex;
  align-items: center;
}
.myNavbar .header-inner .logo a img {
  width: 130px;
}
.myNavbar .header-inner .links {
  margin-right: 20px;
}
.myNavbar .header-inner .links .link-list {
  display: flex;
  align-items: center;
}
.myNavbar .header-inner .links .link-list .item {
  margin-left: 30px;
  position: relative;
}
.myNavbar .header-inner .links .link-list .item:hover .sub-list {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease;
  transform: translateY(0);
}
.myNavbar .header-inner .links .link-list .item a {
  font-size: 14px;
  font-weight: 500;
  color: #707275;
  padding: 15px 0;
  transition: all 0.2s ease-in;
  display: block;
  white-space: nowrap;
}
.myNavbar .header-inner .links .link-list .item a:hover {
  color: #730a96;
  transition: all 0.2s ease-in;
}
.myNavbar .header-inner .links .link-list .item a .fi {
  margin-right: 5px;
  position: relative;
  top: 3px;
}
.myNavbar .header-inner .links .link-list .item .sub-list {
  background-color: white;
  position: absolute;
  right: 0;
  top: 50px;
  padding: 5px 0;
  border-radius: 8px;
  min-width: 170px;
  white-space: nowrap;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  transform: translateY(10px);
}
.myNavbar .header-inner .links .link-list .item .sub-list::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 9px 7px;
  border-color: transparent transparent white transparent;
}
.myNavbar .header-inner .links .link-list .item .sub-list .sub-item a {
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding: 8px;
  cursor: pointer;
  color: #707275;
}
.myNavbar .header-inner .links .link-list .item .sub-list .sub-item a:hover {
  background-color: rgba(115, 10, 150, 0.1);
}
.myNavbar .header-inner .user-login {
  text-align: left;
}
.myNavbar .header-inner .user-login .sign,
.myNavbar .header-inner .user-login .login {
  display: none;
  position: relative;
}
.myNavbar .header-inner .user-login .sign.active,
.myNavbar .header-inner .user-login .login.active {
  display: block;
}
.myNavbar .header-inner .user-login .login .user-link {
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 0;
  cursor: pointer;
  color: #707275;
}
.myNavbar .header-inner .user-login .login .user-link span {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.myNavbar .header-inner .user-login .login .user-link .fi {
  position: relative;
  top: 1px;
  line-height: 0;
  margin-left: 5px;
}
.myNavbar .header-inner .user-login .login .user-link .fi.fi-rr-caret-down {
  font-size: 12px;
  margin-right: 5px;
  margin-left: 0;
}
.myNavbar .header-inner .user-login .login:hover .user-menu {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease;
  transform: translateY(0);
}
.myNavbar .header-inner .user-login .login .user-menu {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  transform: translateY(10px);
  position: absolute;
  top: 50px;
  left: 0;
  background-color: white;
  padding: 5px 0;
  border-radius: 8px;
  min-width: 200px;
  text-align: right;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
}
.myNavbar .header-inner .user-login .login .user-menu li a {
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding: 8px 15px;
  cursor: pointer;
  color: #707275;
  transition: all 0.2s ease;
}
.myNavbar .header-inner .user-login .login .user-menu li a:hover {
  background-color: rgba(115, 10, 150, 0.1);
  transition: all 0.2s ease;
}
.myNavbar .header-inner .user-login .login .user-menu li a:hover .fi {
  color: #730a96;
  transition: all 0.2s ease;
}
.myNavbar .header-inner .user-login .login .user-menu li a .fi {
  font-size: 17px;
  line-height: 0;
  position: relative;
  top: 3px;
  margin-left: 12px;
  transition: all 0.2s ease;
}
.myNavbar .header-inner .mobile-links {
  display: none;
}
.myNavbar .header-inner .mobile-links .btn-mobile-menu {
  background-color: transparent;
  color: #707275;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
}
.myNavbar .header-inner .mobile-links .btn-mobile-menu .fi {
  font-size: 28px;
  position: relative;
  top: 5px;
}

#desktop-search-content {
  margin-right: auto;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#desktop-search-content .btn-show-search {
  width: 48px;
  height: 48px;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 13px;
  font-size: 20px;
  color: #730a96;
  transition: all 0.2s ease-in-out;
}
#desktop-search-content .search-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  display: none;
}
#desktop-search-content .search-content.active {
  display: block;
}
#desktop-search-content .search-inputgroup .input {
  width: 100%;
  height: 48px;
  padding: 3px 15px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #730a96;
  background-color: white;
}
#desktop-search-content .search-inputgroup .input:hover, #desktop-search-content .search-inputgroup .input:focus {
  border-color: #730a96;
}
#desktop-search-content .search-inputgroup .btn-search-clear {
  position: absolute;
  left: 5px;
  top: 6px;
  width: 36px;
  height: 36px;
  border: none;
  background-color: #909294;
  border-radius: 50%;
  padding: 10px;
  font-size: 16px;
  color: white;
  transition: all 0.2s ease-in-out;
}
#desktop-search-content .search-inputgroup .btn-search-clear:hover {
  background-color: #730a96;
  color: white;
}
#desktop-search-content .result {
  padding: 5px;
  display: none;
  background-color: white;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  border-radius: 0 0 10px 10px;
  width: 100%;
}
#desktop-search-content .result.active {
  display: block;
}
#desktop-search-content .result ul {
  max-height: 380px;
  overflow-y: auto;
}
#desktop-search-content .result ul li a {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  padding: 10px 15px;
  color: #707275;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
}
#desktop-search-content .result ul li .fi {
  color: #909294;
  font-size: 16px;
  line-height: 0;
  opacity: 0.5;
}
#desktop-search-content .result ul li:hover a {
  background-color: rgba(47, 172, 102, 0.1);
}
#desktop-search-content .result ul li:hover .fi {
  color: #730a96;
  opacity: 1;
}

@media (max-width: 992px) {
  .myNavbar {
    padding: 10px 0;
  }
  .myNavbar .header-inner {
    grid-template-columns: 90px 1fr 1fr 150px;
  }
  .myNavbar .header-inner .links {
    display: none;
  }
  .myNavbar .header-inner .mobile-links {
    display: block;
    z-index: 20;
  }
  .myNavbar .header-inner .logo {
    position: relative;
    z-index: 10;
  }
  .myNavbar .header-inner .logo a img {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .myNavbar .header-inner .logo {
    text-align: right;
  }
  .myNavbar .header-inner .logo a {
    display: inline-block;
  }
  .myNavbar .header-inner .logo a h6 {
    display: none;
  }
  .myNavbar .header-inner .logo a img {
    width: 90px;
  }
}
@media (max-width: 575px) {
  .myNavbar .header-inner {
    grid-template-columns: 48px auto 48px;
    position: relative;
  }
  .myNavbar .header-inner .logo {
    text-align: center;
  }
  .myNavbar .header-inner .logo a {
    margin-right: auto;
    justify-content: flex-end;
  }
  .myNavbar .header-inner .logo a h6 {
    display: none;
  }
  .myNavbar .header-inner .user-login {
    display: none;
  }
  #desktop-search-content {
    position: absolute;
    left: 0;
  }
  #desktop-search-content .search-content {
    z-index: 30;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Sidebar Mobile Menu */
#sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  width: 300px;
  z-index: 2002;
  background: #fff;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: all 0.3s;
  opacity: 0;
}
#sidebar-menu.active {
  right: 0;
  opacity: 1;
}
#sidebar-menu .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #d5d6d8;
}
#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu {
  width: 45px;
  height: 45px;
  color: #707275;
  background-color: transparent;
  border: none;
  padding: 0;
}
#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu .fi {
  font-size: 24px;
  position: relative;
  top: 4px;
}
#sidebar-menu .sidebar-header .sidebar-close .btn-close-menu:hover {
  color: #730a96;
}
#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
}
#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 100px;
}
#sidebar-menu .sidebar-header .sidebar-logo a span {
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}
#sidebar-menu .sidebar-sign {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  display: none;
}
#sidebar-menu .sidebar-sign .sign {
  display: none;
}
#sidebar-menu .sidebar-sign .sign.active {
  display: block;
}
#sidebar-menu .sidebar-sign .login {
  display: none;
  padding: 10px;
  text-align: right;
}
#sidebar-menu .sidebar-sign .login.active {
  display: block;
}
#sidebar-menu .sidebar-sign .login a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #707275;
}
#sidebar-menu .sidebar-sign .login a span {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#sidebar-menu .sidebar-sign .login a .fi {
  font-size: 18px;
}
#sidebar-menu .category-list {
  display: none;
  margin-top: 20px;
}
#sidebar-menu .category-list .item a {
  padding: 10px 20px 10px 0;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .category-list .item a .fi {
  position: absolute;
  left: 20px;
  color: #2fac66;
}
#sidebar-menu .category-list .item a:hover {
  color: #500868;
  padding-right: 30px;
  background-color: #fff;
  transition: all 0.2s ease;
}
#sidebar-menu .collapse-item {
  position: relative;
}
#sidebar-menu .collapse-item .btn {
  width: 100%;
  padding: 12px 24px;
  text-align: right;
  font-size: 14px;
  border-radius: 0;
  background-color: white;
  border: none;
  color: #730a96;
}
#sidebar-menu .collapse-item .btn:hover, #sidebar-menu .collapse-item .btn:focus {
  box-shadow: none;
}
#sidebar-menu .collapse-item .btn .icon {
  position: absolute;
  left: 14px;
  top: 5px;
  color: #730a96;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
#sidebar-menu .collapse-item .btn .icon .fi {
  font-size: 16px;
}
#sidebar-menu .collapse-item .btn.collapsed {
  color: #212529;
}
#sidebar-menu .collapse-item .btn.collapsed .icon {
  left: 12px;
  top: 8px;
  transform: rotate(0deg);
  color: #707275;
}
#sidebar-menu .collapse-item .card {
  padding: 15px 15px 15px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #d5d6d8;
  background-color: rgba(0, 0, 0, 0.02);
}
#sidebar-menu .collapse-item .card ul li:hover .name {
  color: #730a96;
}
#sidebar-menu .collapse-item .card ul li a {
  display: block;
  padding: 6px 0;
}
#sidebar-menu .collapse-item .card ul li .name {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
}
#sidebar-menu .collapse-item .card ul li .desc {
  margin-right: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #909294;
}
#sidebar-menu .collapse-item .card ul li .fi {
  font-size: 18px;
  position: relative;
  top: 5px;
}

.overlay-back {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s;
}
.overlay-back.active {
  display: block;
  opacity: 1;
}

@media (max-width: 992px) {
  #sidebar-menu .category-list {
    display: block;
  }
}
@media (max-width: 575px) {
  #sidebar-menu .sidebar-sign {
    display: block;
  }
}
@media (max-width: 400px) {
  #sidebar-menu {
    width: 100%;
    right: -400px;
  }
}
/*#endregion -------------- Sidebar Mobile Menu */
/*#region ----------------- Header Background */
.header-background {
  background-image: url(../images/background/bg-header.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
.header-background .background-inner {
  display: grid;
  grid-template-columns: 50% 50%;
}
.header-background .information {
  margin-top: 200px;
}
.header-background .information h2 {
  font-weight: 800;
  color: #212529;
  margin-bottom: 1.2rem;
}
.header-background .information p {
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  color: #707275;
  text-align: justify;
}
.header-background .information .list {
  margin-top: 2rem;
}
.header-background .information .list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  color: #707275;
}
.header-background .information .list li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #730a96;
  border-radius: 50%;
  margin-left: 15px;
  color: white;
}
.header-background .information .list li .icon .fi {
  position: relative;
  top: 3px;
}
.header-background .information .btn-secondary {
  margin-top: 1.5rem;
}
.header-background .images-group {
  position: relative;
  text-align: left;
  margin-top: 140px;
}
.header-background .images-group .img {
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
}
.header-background .images-group .img img {
  width: 100%;
}

@media (max-width: 992px) {
  .header-background {
    height: unset;
    background-color: #f9f1d5;
    background-size: cover;
    background-position: center center;
  }
  .header-background .background-inner {
    grid-template-columns: 100%;
  }
  .header-background .information {
    margin-top: 130px;
    text-align: center;
  }
  .header-background .information P {
    text-align: center;
    width: 70%;
    margin: 0 auto;
  }
  .header-background .images-group {
    margin-top: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 100px;
  }
  .header-background .images-group .img {
    width: 350px;
    position: unset;
    margin: 0 auto;
  }
  .header-background .images-group .img.img-comment {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 768px) {
  .header-background .information P {
    width: 85%;
  }
}
@media (max-width: 575px) {
  .header-background .images-group .img {
    width: 90%;
  }
}
/*#endregion -------------- Header Background */
/*#region ----------------- Category */
.category-group {
  position: relative;
  top: -50px;
}
.category-group .category-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 150px;
  position: relative;
  z-index: 50;
}
.category-group .category-grid .card-category {
  flex: 0 0 25%;
  width: 25%;
}
.category-group .shape-line {
  background-image: url(../images/shapes/lines.svg);
  background-repeat: no-repeat;
  background-size: 180px;
  width: 100px;
  height: 250px;
  position: absolute;
  right: 0;
  top: -50px;
}

@media (max-width: 1199px) {
  .category-group .category-grid {
    padding: 0 50px;
  }
  .category-group .category-grid .card-category {
    flex: 0 0 33.33%;
    width: 33.33%;
  }
}
@media (max-width: 768px) {
  .category-group .category-grid {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .category-group .category-grid .card-category {
    flex: 0 0 50%;
    width: 50%;
  }
}
/*#endregion -------------- Category */
/*#region ----------------- Cards */
.cards-list-content {
  display: grid;
  grid-template-columns: 100%;
}
.cards-list-content.grid-4 {
  grid-template-columns: 25% 25% 25% 25%;
}
.cards-list-content .title-list {
  font-size: 16px;
  margin-bottom: 20px;
}

.card-category {
  padding: 10px;
  text-align: center;
}
.card-category .card-inner {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  padding: 30px 20px;
  display: block;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
}
.card-category .card-inner .icon {
  color: #730a96;
  width: 55px;
  height: 55px;
  margin: 0 auto 20px auto;
}
.card-category .card-inner .icon img {
  width: 100%;
  height: 100%;
}
.card-category .card-inner .icon .fi {
  font-size: 44px;
}
.card-category .card-inner h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  color: #212529;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-category:hover .card-inner {
  border-color: #730a96;
}
.card-category:hover .card-inner .icon,
.card-category:hover .card-inner h6 {
  color: #730a96;
}

.card-coaching {
  transition: all 0.2s ease-in-out;
}
.card-coaching .card-inner {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  display: block;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.card-coaching .card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 90px;
  background-color: #2fac66;
  border-radius: 15px 15px 0 0;
}
.card-coaching .user-image {
  padding-top: 50px;
  position: relative;
  z-index: 50;
}
.card-coaching .user-image .img-inner {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(47, 172, 102, 0.3);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.card-coaching .user-image .img-inner img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid white;
}
.card-coaching .info {
  margin-top: 1rem;
  text-align: center;
}
.card-coaching .info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2fac66;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-coaching .info p {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-coaching .c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d5d6d8;
  padding: 10px;
  border-radius: 0 0 15px 15px;
}
.card-coaching .c-footer .location {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
}
.card-coaching .c-footer .location .fi {
  font-size: 16px;
  position: relative;
  top: 3px;
  margin-left: 5px;
}
.card-coaching .free-consulant {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 5px;
  border-radius: 5px;
}
.card-coaching .free-consulant .icon {
  color: white;
  border-radius: 50%;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-coaching .free-consulant .icon .fi {
  font-size: 14px;
  position: relative;
  top: 3px;
}
.card-coaching .free-consulant span {
  font-size: 12px;
  font-weight: 400;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: block;
}
.card-coaching:hover {
  transform: translateY(-5px);
}
.card-coaching:hover .user-image .img-inner {
  box-shadow: 0 5px 20px rgba(47, 172, 102, 0.5);
}

.card-blog {
  padding: 0 10px;
  margin-bottom: 2rem;
  transition: all 0.2s ease-in-out;
}
.card-blog .card-inner {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  display: block;
}
.card-blog .cover-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.card-blog .cover-container img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: saturate(0.9);
}
.card-blog .info {
  padding: 15px;
}
.card-blog .info .title {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .info .desc {
  font-size: 13px;
  font-weight: 400;
  min-height: 75px;
  color: #707275;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d5d6d8;
  padding: 10px 15px;
  border-radius: 0 0 10px 10px;
}
.card-blog .c-footer .category {
  color: #707275;
}
.card-blog .c-footer .category .fi {
  font-size: 14px;
  margin-left: 3px;
  position: relative;
  top: 2px;
}
.card-blog .c-footer .category span {
  font-size: 12px;
}
.card-blog .c-footer .date {
  font-size: 12px;
  color: #707275;
}
.card-blog .following-info {
  border-top: 1px solid #d5d6d8;
  padding-top: 10px;
  display: grid;
  grid-template-columns: 45px auto 90px;
  align-items: center;
}
.card-blog .following-info .user-image .img-inner img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.card-blog .following-info .user-info {
  padding: 0 10px;
}
.card-blog .following-info .user-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .following-info .user-info h6 {
  font-size: 10px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .following-info .button-group {
  text-align: left;
}
.card-blog .following-info .button-group .btn {
  padding: 0.3rem 0.5rem;
  font-size: 10px;
}
.card-blog .following-info .button-group .btn .fi {
  font-size: 11px;
  margin-left: 5px;
  position: relative;
  top: 3px;
}
.card-blog.inCarousel {
  padding: 0;
}
.card-blog:hover {
  transform: translateY(-3px);
}
.card-blog:hover .card-inner {
  box-shadow: 0 5px 30px rgba(112, 114, 117, 0.2);
}

.card-advice-row {
  margin-bottom: 30px;
}
.card-advice-row .card-inner {
  display: grid;
  grid-template-columns: auto 300px;
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(112, 144, 176, 0.2);
  position: relative;
}
.card-advice-row.no-video .card-inner {
  grid-template-columns: 100%;
}
.card-advice-row.no-video .rating {
  position: absolute;
  top: 15px;
  left: 15px;
}
.card-advice-row .c-body {
  display: grid;
  grid-template-columns: 90px auto;
}
.card-advice-row .c-body .user-img {
  width: 90px;
  height: 90px;
}
.card-advice-row .c-body .user-img a {
  display: block;
  position: relative;
}
.card-advice-row .c-body .user-img .avatar {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 20;
}
.card-advice-row .c-body .user-img .fade-avatar {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 15px;
  transform: scale(0.9);
  opacity: 0.5;
  z-index: 1;
  filter: blur(10px);
}
.card-advice-row .c-body .info {
  padding-right: 20px;
}
.card-advice-row .c-body .name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-advice-row .c-body .name a {
  color: #212529;
  display: inline-block;
}
.card-advice-row .c-body .activity {
  font-size: 13px;
  font-weight: 400;
  color: #909294;
}
.card-advice-row .c-body .desc {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  margin-top: 10px;
  min-height: 59px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-advice-row .c-video .rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.card-advice-row .c-video .rating .free-session {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00a688 0%, #00dfbd 100%);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  border-radius: 30px;
}
.card-advice-row .c-video .rating .rate {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.card-advice-row .c-video .rating .rate .text {
  font-size: 13px;
  font-weight: 500;
  color: #707275;
  margin: 0 5px;
}
.card-advice-row .c-video .rating .rate .icon svg {
  fill: #f0c61f;
}
.card-advice-row .c-video .video-container {
  position: relative;
}
.card-advice-row .c-video .video-container .video-inner {
  position: relative;
  left: -30px;
  display: flex;
}
.card-advice-row .c-video .video-container video {
  border-radius: 10px;
  width: 100%;
}
.card-advice-row .c-video .video-container .overlay-video {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}
.card-advice-row .c-video .video-container .overlay-video .icon {
  font-size: 24px;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-advice-row .c-video .video-container .overlay-video .icon .fi {
  line-height: 0 !important;
}
.card-advice-row .c-video .video-container .overlay-video h6 {
  font-size: 12px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  margin-top: 5px;
}
.card-advice-row .c-video .video-container .overlay-video.active {
  visibility: visible;
  opacity: 1;
}
.card-advice-row .c-video .btn-show-modal-video {
  display: none;
  background-color: white;
  border: 1px solid #730a96;
  padding: 0.6rem 1.2rem;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  min-width: 120px;
  color: #730a96;
}
.card-advice-row .price-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.card-advice-row .price-content .time-cost {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-advice-row .price-content .time-cost .text {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
}
.card-advice-row .price-content .time-cost .price {
  font-size: 15px;
  margin: 0 8px;
  font-weight: 600;
  color: #212529;
}
.card-advice-row .price-content .time-cost .toman {
  font-size: 12px;
  font-weight: 400;
  color: #707275;
}
.card-advice-row .price-content .bookmark .btn {
  padding: 0.6rem 1.2rem;
  font-size: 13px;
  min-width: 120px;
}

.card-class {
  margin-bottom: 20px;
}
.card-class .card-inner {
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 8px 40px rgba(112, 144, 176, 0.1);
  position: relative;
}
.card-class .card-body {
  display: grid;
  grid-template-columns: 90px auto;
  padding: 0 0 15px 0;
}
.card-class .teacher-image {
  width: 90px;
  height: 90px;
  position: relative;
}
.card-class .teacher-image .avatar {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 20;
}
.card-class .teacher-image .fade-avatar {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 15px;
  transform: scale(0.9);
  opacity: 0.5;
  z-index: 1;
  filter: blur(10px);
}
.card-class .info {
  padding-right: 20px;
}
.card-class .info .teacher-name {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-class .info ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-class .info ul li {
  flex: 0 0 50%;
  width: 50%;
  margin-top: 8px;
}
.card-class .info ul .icon .fi {
  font-size: 16px;
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 4px;
  color: #909294;
}
.card-class .info ul .text {
  font-size: 13px;
  font-weight: 400;
  margin-right: 5px;
  color: #212529;
  padding: 2px 5px;
  border-radius: 3px;
}
.card-class .info ul .text.bg-success {
  background-color: #72e024 !important;
  color: white;
}
.card-class .info ul .text.bg-error {
  background-color: #df0538 !important;
  color: white;
}
.card-class .info ul .text.bg-primary {
  background-color: #730a96 !important;
  color: white;
}
.card-class .c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d5d6d8;
  padding-top: 15px;
}
.card-class .c-footer .shenase h6 {
  font-size: 13px;
  font-weight: 400;
  color: #212529;
  margin-bottom: 0;
}
.card-class .c-footer .shenase h6 span {
  color: #707275;
}
.card-class .c-footer .btn {
  padding: 0.5rem 0.8rem;
  font-size: 13px;
}
.card-class .dropdown {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-class .dropdown .btn-dropdown {
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: 0;
  border: none;
  background-color: transparent;
}
.card-class .dropdown .btn-dropdown .fi {
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 3px;
  font-size: 18px;
  color: #909294;
}
.card-class .dropdown .dropdown-menu {
  border: none;
  box-shadow: 0 3px 5px rgba(112, 114, 117, 0.1);
  border-radius: 10px;
}
.card-class .dropdown .dropdown-item {
  font-size: 13px;
  color: #212529;
}
.card-class .dropdown .dropdown-item .fi {
  font-size: 18px;
  margin-left: 10px;
  line-height: 0;
  position: relative;
  top: 4px;
  display: inline-block;
  color: #909294;
}
.card-class .dropdown .dropdown-item.red .fi {
  color: #df0538;
}

.card-certificate {
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 16px 40px rgba(112, 144, 176, 0.1);
}
.card-certificate .card-inner ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.card-certificate .card-inner ul li {
  flex: 0 0 50%;
  width: 50%;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}
.card-certificate .card-inner ul li .name {
  color: #212529;
}
.card-certificate .card-inner ul li .desc {
  color: #707275;
  margin-right: 5px;
}
.card-certificate .c-footer {
  text-align: left;
  border-top: 1px solid #d5d6d8;
  padding-top: 15px;
}
.card-certificate .c-footer .button-group .btn {
  padding: 0.4rem 0.8rem;
}

.card-gallery {
  margin: 5px;
}
.card-gallery .card-inner {
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(112, 114, 117, 0.3);
  padding: 5px;
  display: block;
  border-radius: 10px;
}
.card-gallery .card-inner .img-container {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin: 0;
}
.card-gallery .card-inner .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-gallery .card-inner .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.card-gallery .card-inner .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.card-gallery .card-inner .overlay .fi {
  font-size: 36px;
  color: white;
  opacity: 0;
  line-height: 0;
  display: inline-block;
  transform: scale(2);
  transition: all 0.3s ease-in-out;
}
.card-gallery .card-inner .overlay .text {
  position: absolute;
  bottom: 25px;
  right: 10px;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-gallery .card-inner:hover .overlay {
  opacity: 1;
}
.card-gallery .card-inner:hover .overlay .fi {
  opacity: 1;
  transform: scale(1);
}

.card-video {
  padding: 5px;
}
.card-video .card-inner {
  background-color: white;
  padding: 5px;
  box-shadow: 0 5px 10px rgba(112, 114, 117, 0.3);
  border-radius: 15px;
}
.card-video .video-container {
  position: relative;
}
.card-video .video-container .video-inner {
  display: flex;
}
.card-video .video-container video {
  border-radius: 12px;
  width: 100%;
}
.card-video .video-container .overlay-video {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}
.card-video .video-container .overlay-video .icon {
  font-size: 24px;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-video .video-container .overlay-video .icon .fi {
  line-height: 0 !important;
}
.card-video .video-container .overlay-video h6 {
  font-size: 12px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-video .video-container .overlay-video.active {
  visibility: visible;
  opacity: 1;
}

.card-blog-row {
  border-bottom: 1px solid #d5d6d8;
  padding: 1.5rem 0;
}
.card-blog-row .card-inner {
  background-color: white;
  display: grid;
  grid-template-columns: 180px auto;
  transition: all 0.2s ease-in-out;
}
.card-blog-row .img-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  margin: 0;
}
.card-blog-row .img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-blog-row .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.card-blog-row .img-container:hover img {
  transform: scale(1.03);
}
.card-blog-row .info {
  padding: 20px 20px 0 0;
}
.card-blog-row .info .name {
  display: block;
}
.card-blog-row .info .name h2 {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.card-blog-row .info .name:hover h2 {
  color: #730a96;
}
.card-blog-row .info .date {
  margin: 1rem 0;
}
.card-blog-row .info .date ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.card-blog-row .info .date ul li {
  margin-left: 20px;
  color: #909294;
  font-size: 13px;
  font-weight: 300;
}
.card-blog-row .info .date ul li:last-child {
  margin-left: 0;
}
.card-blog-row .info .date ul li .fi {
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.card-blog-row .info .desc {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  line-height: 26px;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog-row .info .see-more {
  text-align: left;
}

@media (max-width: 1199px) {
  .cards-list-content.grid-4 {
    grid-template-columns: 33.33% 33.33% 33.33%;
  }
  .card-advice-row .card-inner {
    grid-template-columns: auto 210px;
  }
  .card-advice-row .c-body {
    grid-template-columns: 70px auto;
  }
  .card-advice-row .c-body .user-img {
    width: 70px;
    height: 70px;
  }
  .card-advice-row .c-body .info {
    padding-right: 15px;
  }
  .card-advice-row .c-body .name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .card-advice-row .c-body .activity {
    font-size: 11px;
  }
  .card-advice-row .c-body .desc {
    -webkit-line-clamp: 3;
    font-size: 12px;
    min-height: 54px;
  }
  .card-advice-row .price-content .time-cost .text,
  .card-advice-row .price-content .time-cost .toman {
    font-size: 11px;
  }
  .card-advice-row .price-content .time-cost .price {
    font-size: 14px;
  }
  .card-advice-row .c-video .rating .rate {
    margin-left: 0;
    margin-bottom: 5px;
  }
  .card-advice-row .c-video .rating .rate .text {
    font-size: 12px;
  }
  .card-advice-row .c-video .rating .rate .icon svg {
    width: 18px;
  }
  .card-advice-row .c-video .rating .free-session {
    font-size: 10px;
  }
  .card-gallery .card-inner .img-container {
    height: 170px;
  }
}
@media (max-width: 992px) {
  .cards-list-content.grid-4 {
    grid-template-columns: 50% 50%;
  }
  .card-advice-row {
    padding-left: 20px;
  }
  .card-advice-row .card-inner {
    grid-template-columns: auto 250px;
  }
  .card-advice-row .c-video .rating .rate {
    margin: 0 0 0 10px;
  }
  .card-blog-row .card-inner {
    grid-template-columns: 150px auto;
  }
  .card-blog-row .img-container {
    height: 150px;
  }
  .card-blog-row .info {
    padding: 10px 15px 0 0;
  }
  .card-blog-row .info .name h2 {
    font-size: 14px;
  }
  .card-blog-row .info .date {
    margin: 0.7rem 0;
  }
  .card-blog-row .info .date ul li {
    font-size: 12px;
  }
  .card-blog-row .info .desc {
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 0.5rem;
  }
  .card-blog-row .see-more .btn {
    padding: 0.5rem 1.2rem;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .card-category .card-inner {
    padding: 20px 10px;
  }
  .card-category .card-inner .icon {
    font-size: 34px;
  }
  .card-category .card-inner h6 {
    font-size: 12px;
  }
  .card-blog .info .title {
    font-size: 12px;
    line-height: 20px;
  }
  .card-blog .info .desc {
    font-size: 10px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-blog .c-footer .category .fi {
    font-size: 12px;
  }
  .card-blog .c-footer .category span {
    font-size: 10px;
  }
  .card-blog .c-footer .date {
    font-size: 10px;
  }
  .card-advice-row {
    padding-left: 0;
  }
  .card-advice-row .card-inner {
    grid-template-columns: 100%;
  }
  .card-advice-row .c-video {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-right: 85px;
  }
  .card-advice-row .c-video .rating {
    margin-bottom: 0;
  }
  .card-advice-row .c-video .video-container .video-inner {
    display: none;
  }
  .card-advice-row .c-video .video-container .btn-show-modal-video {
    display: block;
  }
  .card-advice-row.no-video .rating {
    position: relative;
    top: 0;
    left: 0;
  }
  .card-gallery .card-inner .overlay .fi {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .cards-list-content.grid-4 {
    grid-template-columns: 100%;
  }
  .card-advice-row .price-content {
    flex-direction: column;
  }
  .card-advice-row .price-content .time-cost {
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .card-advice-row .price-content .bookmark {
    flex: 0 0 100%;
    width: 100%;
  }
  .card-advice-row .price-content .bookmark .btn {
    width: 100%;
  }
  .card-advice-row .c-video {
    flex-direction: column-reverse;
    margin-top: 10px;
  }
  .card-advice-row .c-video .rating,
  .card-advice-row .c-video .video-container {
    width: 100%;
  }
  .card-advice-row .c-video .rating {
    margin-top: 10px;
  }
  .card-advice-row .c-video .rating .rate {
    margin: 5px;
  }
  .card-advice-row .c-video .rating .free-session {
    margin: 5px;
  }
  .card-advice-row .c-video .video-container .btn-show-modal-video {
    width: 100%;
  }
  .card-class .card-body {
    grid-template-columns: 70px auto;
  }
  .card-class .teacher-image {
    width: 70px;
    height: 70px;
  }
  .card-class .info ul li {
    flex: 0 0 100%;
    width: 100%;
  }
  .card-certificate .card-inner ul li {
    flex: 0 0 100%;
    width: 100%;
  }
  .card-gallery .card-inner .img-container {
    height: 140px;
  }
  .card-gallery .card-inner .overlay .fi {
    font-size: 30px;
  }
  .card-gallery .card-inner .overlay .text {
    font-size: 10px;
  }
  .card-blog-row .card-inner {
    grid-template-columns: 100%;
  }
  .card-blog-row .img-container {
    height: 160px;
  }
  .card-blog-row .info {
    padding: 15px 0 0 0;
  }
}
@media (max-width: 400px) {
  .card-class .c-footer {
    flex-direction: column;
  }
  .card-class .c-footer .button-group {
    width: 100%;
    margin-top: 10px;
  }
  .card-class .c-footer .button-group .btn {
    width: 100%;
  }
  .card-gallery .card-inner .img-container {
    height: 120px;
  }
  .card-gallery .card-inner .overlay .fi {
    font-size: 20px;
  }
}
/*#endregion -------------- Cards */
/*#region ----------------- Default Title */
.default-title {
  text-align: center;
  padding: 2rem 0;
}
.default-title h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #212529;
}
.default-title p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  color: #707275;
}

@media (max-width: 992px) {
  .default-title h2 {
    font-size: 20px;
  }
  .default-title p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .default-title h2 {
    font-size: 18px;
  }
  .default-title p {
    font-size: 12px;
  }
}
/*#endregion -------------- Default Title */
/*#region ----------------- Level Section */
.levels-section {
  padding: 3rem 0 4rem 0;
  margin-top: 4rem;
  position: relative;
}
.levels-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background-color: rgba(115, 10, 150, 0.12);
  border-radius: 90px 0 0 90px;
}
.levels-section .section-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 50;
  margin-top: 2rem;
  padding: 0 80px;
}
.levels-section .section-inner .level-item {
  flex: 0 0 33.33%;
  width: 33.33%;
  text-align: center;
  position: relative;
}
.levels-section .section-inner .level-item .icon {
  background-color: #730a96;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.1);
}
.levels-section .section-inner .level-item .icon img {
  width: 100%;
}
.levels-section .section-inner .level-item .icon .step-number {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  background-color: #2fac66;
  border-radius: 50%;
}
.levels-section .section-inner .level-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0;
  margin-top: 1.2rem;
}
.levels-section .section-inner .level-item::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 50%;
  width: 100%;
  height: 70px;
  background-image: url(../images/shapes/line-dash.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.levels-section .section-inner .level-item:first-child::before {
  transform: rotate(180deg);
  top: 20px;
}
.levels-section .section-inner .level-item:last-child::before {
  display: none;
}

@media (max-width: 992px) {
  .levels-section {
    padding: 2rem 0 4rem 0;
  }
  .levels-section::before {
    border-radius: 70px 0 0 70px;
  }
  .levels-section .section-inner {
    padding: 0 40px;
  }
  .levels-section .section-inner .level-item .icon {
    width: 100px;
    height: 100px;
  }
  .levels-section .section-inner .level-item h3 {
    margin-top: 1rem;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .levels-section .section-inner {
    flex-wrap: wrap;
  }
  .levels-section .section-inner .level-item {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .levels-section .section-inner .level-item:last-child {
    margin-bottom: 0;
  }
  .levels-section .section-inner .level-item::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .levels-section::before {
    border-radius: 50px 0 0 50px;
    width: 100%;
  }
}
/*#endregion -------------- Level Section */
/*#region ----------------- Coaching Section */
.coaching-section {
  padding: 5rem 0;
}

@media (max-width: 992px) {
  .coaching-section {
    padding: 2rem 0;
  }
}
/*#endregion -------------- Coaching Section */
/*#region ----------------- Carousel */
.swiper.swiper-coaching {
  padding: 20px;
}
.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #730a96;
  opacity: 0.9;
  transition: all 0.2s ease-in-out;
}
.swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
}

.swiper-coaching {
  padding-bottom: 60px !important;
}
.swiper-coaching .swiper-pagination-bullets {
  bottom: 0 !important;
}

.swiper-comments,
.swiper-user-blogs {
  padding-bottom: 20px !important;
}
.swiper-comments .swiper-pagination-bullets,
.swiper-user-blogs .swiper-pagination-bullets {
  bottom: 0 !important;
}
.swiper-comments .swiper-slide .card-comment-slider,
.swiper-user-blogs .swiper-slide .card-comment-slider {
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.swiper-comments .swiper-slide .card-comment-slider .info,
.swiper-user-blogs .swiper-slide .card-comment-slider .info {
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.swiper-comments .swiper-slide.swiper-slide-active .card-comment-slider,
.swiper-user-blogs .swiper-slide.swiper-slide-active .card-comment-slider {
  opacity: 1;
}
.swiper-comments .swiper-slide.swiper-slide-active .card-comment-slider .info,
.swiper-user-blogs .swiper-slide.swiper-slide-active .card-comment-slider .info {
  transform: scale(1);
}

.swiper-user-blogs {
  padding: 20px 0 !important;
}

.calendar-section {
  position: relative;
}

.swiper-calendar {
  position: unset !important;
  padding: 20px 5px !important;
}
.swiper-calendar .swiper-button-prev,
.swiper-calendar .swiper-button-next {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.swiper-calendar .swiper-button-prev::after,
.swiper-calendar .swiper-button-next::after {
  font-size: 24px;
  color: #707275;
  font-family: "uicons-regular-rounded";
}
.swiper-calendar .swiper-button-next {
  left: -20px !important;
}
.swiper-calendar .swiper-button-next::after {
  content: "\f111" !important;
  color: #212529;
}
.swiper-calendar .swiper-button-prev {
  right: -20px !important;
}
.swiper-calendar .swiper-button-prev::after {
  content: "\f112" !important;
  color: #212529;
}

/*#endregion -------------- Carousel */
/*#region ----------------- Comments */
.comments-section {
  padding: 3rem 0 3rem 0;
  position: relative;
}
.comments-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: rgba(47, 172, 102, 0.12);
  border-radius: 0 90px 90px 0;
}
.comments-section .shape-line {
  background-image: url(../images/shapes/lines.svg);
  background-repeat: no-repeat;
  background-size: 180px;
  width: 100px;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: -150px;
}
.comments-section .default-title h2 {
  color: #2fac66;
}

.card-comment-slider {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.card-comment-slider .text {
  background-color: white;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  border-radius: 15px;
  padding: 20px 20px 60px 20px;
  position: relative;
}
.card-comment-slider .text p {
  font-size: 15px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 0;
  text-align: center;
  line-height: 28px;
}
.card-comment-slider .text::before {
  content: "\f258";
  position: absolute;
  right: 15px;
  bottom: -5px;
  font-family: "uicons-regular-rounded";
  color: rgba(112, 114, 117, 0.1);
  font-size: 48px;
  list-style: 0 !important;
}
.card-comment-slider .info {
  text-align: center;
}
.card-comment-slider .info .user-image {
  position: relative;
  top: -50px;
}
.card-comment-slider .info .user-image .img-inner {
  border: 4px solid white;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.card-comment-slider .info .user-image .img-inner img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.card-comment-slider .info .name {
  position: relative;
  top: -30px;
  font-size: 14px;
  font-weight: 600;
  color: #212529;
}
.card-comment-slider .info .course-name {
  position: relative;
  top: -25px;
  font-size: 12px;
  font-weight: 400;
  color: #707275;
}

@media (max-width: 992px) {
  .comments-section {
    padding: 2rem 0;
    margin-top: 1rem;
  }
  .comments-section::before {
    border-radius: 0 70px 70px 0;
  }
}
@media (max-width: 575px) {
  .comments-section::before {
    border-radius: 0 50px 50px 0;
    width: 100%;
  }
}
/*#endregion -------------- Comments */
/*#region ----------------- Blogs Styles */
.blogs-section {
  padding: 5rem 0;
}
.blogs-section.bg-grey {
  background-color: #f1f2f3;
}
.blogs-section.padding {
  padding: 5rem 0 10rem;
}
.blogs-section .section-inner {
  margin-top: 1rem;
}
.blogs-section .nav-pills {
  display: flex;
}
.blogs-section .nav-pills .nav-item {
  background-color: rgba(115, 10, 150, 0.1);
  padding: 5px;
}
.blogs-section .nav-pills .nav-item:last-child {
  border-radius: 50px 0 0 50px;
}
.blogs-section .nav-pills .nav-item:first-child {
  border-radius: 0 50px 50px 0;
}
.blogs-section .nav-pills .nav-link {
  color: #212529;
  font-size: 14px;
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
}
.blogs-section .nav-pills .nav-link.active {
  background-color: #730a96;
  color: white;
}
.blogs-section .tab-content {
  margin-top: 4rem;
}

.blog-page-content {
  margin: 8rem 0 6rem 0;
}
.blog-page-content .grid-layout {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-areas: "g-bigimage g-bigimage g-width g-width" "g-bigimage g-bigimage g-small-1 g-small-2";
}
.blog-page-content .grid-layout .grid-item {
  padding: 5px;
}
.blog-page-content .grid-layout .grid-item .news-content {
  height: 100%;
}
.blog-page-content .grid-layout .grid-item .news-content a {
  display: block;
}
.blog-page-content .grid-layout .grid-item .news-content .news-content-pic {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
  margin: 0;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 12px 12px 0 rgba(181, 181, 181, 0.11);
}
.blog-page-content .grid-layout .grid-item .news-content .news-content-pic .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.blog-page-content .grid-layout .grid-item .news-content .news-content-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 1.5s ease-in-out;
}
.blog-page-content .grid-layout .grid-item .news-content .blog-data {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 20;
  text-align: center;
  width: 100%;
  height: 40%;
  overflow: hidden;
  padding: 5px 20px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.blog-page-content .grid-layout .grid-item .news-content .blog-data::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.blog-page-content .grid-layout .grid-item .news-content .blog-data h2 {
  text-align: right;
  font-size: 14px;
  font-weight: 800;
  color: white;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
  width: 100%;
}
.blog-page-content .grid-layout .grid-item .news-content .blog-data .info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 16px;
  width: 100%;
}
.blog-page-content .grid-layout .grid-item .news-content .blog-data .info .seen {
  font-size: 12px;
  font-weight: 300;
  color: white;
  margin-right: 10px;
  white-space: nowrap;
}
.blog-page-content .grid-layout .grid-item .news-content .blog-data .info .seen .fi {
  font-size: 16px;
  position: relative;
  top: 4px;
  margin-right: 3px;
}
.blog-page-content .grid-layout .grid-item .news-content .blog-category {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #730a96;
  font-size: 12px;
  font-weight: 600;
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
}
.blog-page-content .grid-layout .grid-item .news-content:hover .news-content-pic img {
  transform: scale(1.05);
}
.blog-page-content .grid-layout .grid-item.grid-bigImage {
  grid-area: g-bigimage;
}
.blog-page-content .grid-layout .grid-item.grid-bigImage .news-content .news-content-pic {
  height: 430px;
  border-radius: 10px;
}
.blog-page-content .grid-layout .grid-item.grid-width {
  grid-area: g-width;
}
.blog-page-content .grid-layout .grid-item.grid-width .news-content .news-content-pic {
  border-radius: 10px;
}
.blog-page-content .grid-layout .grid-item.grid-small-1 {
  grid-area: g-small-1;
}
.blog-page-content .grid-layout .grid-item.grid-small-1 .news-content .news-content-pic {
  border-radius: 10px;
}
.blog-page-content .grid-layout .grid-item.grid-small-2 {
  grid-area: g-small-2;
}
.blog-page-content .grid-layout .grid-item.grid-small-2 .news-content .news-content-pic {
  border-radius: 10px;
}

.blogs-list-page {
  margin: 2rem 0 8rem 0;
}
.blogs-list-page .cards-list-container .list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 30px 0;
}
.blogs-list-page .cards-list-container .list-title .title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 0;
}
.blogs-list-page .cards-list-container .list-title .sort-title {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 0;
}
.blogs-list-page .cards-list-container .list-title .sort-title .fi {
  font-size: 20px;
  position: relative;
  top: 5px;
  margin-left: 10px;
  line-height: 0;
}
.blogs-list-page .cards-list-container .list-title ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
}
.blogs-list-page .cards-list-container .list-title ul li {
  margin-left: 10px;
}
.blogs-list-page .cards-list-container .list-title ul li a {
  border-radius: 5px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  padding: 3px 5px;
}
.blogs-list-page .cards-list-container .list-title ul li.active a {
  background-color: #730a96;
  color: white;
}
.blogs-list-page .cards-list-container .list-title .sort {
  display: flex;
  align-items: center;
}
.blogs-list-page .cards-list-container .blogs-list-inner {
  margin-top: 18px;
}
.blogs-list-page .cards-list-container .blogs-list-inner .card-blog {
  padding: 0;
}

.blog-filters-side {
  position: sticky;
  top: 100px;
  box-shadow: 10px 2px 22px 1px rgba(33, 37, 41, 0.1);
  background-color: white;
  border-radius: 15px;
}
.blog-filters-side .side-search {
  margin: 0 0 20px 0;
  padding: 10px;
}
.blog-filters-side .side-search .search-group {
  position: relative;
}
.blog-filters-side .side-search .search-group .input {
  background-color: rgba(47, 172, 102, 0.05);
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  height: 44px;
  padding: 0 20px 0 50px;
  width: 100%;
  transition: all 0.2s ease;
}
.blog-filters-side .side-search .search-group .input:hover, .blog-filters-side .side-search .search-group .input:focus {
  border-color: #730a96;
  transition: all 0.2s ease;
}
.blog-filters-side .side-search .search-group .btn-search {
  width: 44px;
  height: 44px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #730a96;
  border: 3px solid #f4f5f6;
  border-radius: 50%;
  padding: 0;
}
.blog-filters-side .side-search .search-group .btn-search .fi {
  font-size: 20px;
  color: white;
  position: relative;
  top: 4px;
  line-height: 0 !important;
}
.blog-filters-side .category-list {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #d5d6d8;
}
.blog-filters-side .category-list .title {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  padding: 0 0 15px 10px;
  position: relative;
}
.blog-filters-side .category-list .item-link a {
  display: grid;
  grid-template-columns: 20px auto 40px;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
}
.blog-filters-side .category-list .item-link a:hover {
  background-color: rgba(115, 10, 150, 0.1);
}
.blog-filters-side .category-list .item-link a:hover .number,
.blog-filters-side .category-list .item-link a:hover .text,
.blog-filters-side .category-list .item-link a:hover .icon {
  color: #730a96;
}
.blog-filters-side .category-list .item-link .icon {
  font-size: 14px;
  position: relative;
  top: 4px;
  color: #707275;
}
.blog-filters-side .category-list .item-link .text {
  font-size: 13px;
  font-weight: 400;
  color: #212529;
}
.blog-filters-side .category-list .item-link .number {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #909294;
}

.last-articles {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.last-articles .title {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  padding: 0 0 15px 10px;
  position: relative;
}
.last-articles .article-inner .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
.last-articles .article-inner .item a {
  display: grid;
  grid-template-columns: 50px auto;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.last-articles .article-inner .item:last-child {
  border: none;
}
.last-articles .article-inner .item:hover .text {
  color: #730a96;
}
.last-articles .article-inner .item .article-pic {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin: 0;
}
.last-articles .article-inner .item .article-pic .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.last-articles .article-inner .item .article-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.last-articles .article-inner .item .text {
  font-size: 12px;
  font-weight: 400;
  color: #707275;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 20px;
  max-height: 42px;
}
.last-articles .see-more {
  padding: 10px 10px 0 10px;
  text-align: center;
}
.last-articles .see-more a {
  font-size: 13px;
  font-weight: 400;
  color: #730a96;
}
.last-articles .see-more a .fi {
  font-size: 16px;
  position: relative;
  right: 3px;
  top: 2px;
}

.blogs-details-content {
  padding-left: 30px;
}
.blogs-details-content .information {
  margin-bottom: 2rem;
}
.blogs-details-content .information .title {
  font-size: 22px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
  line-height: normal;
}
.blogs-details-content .information .info-data ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blogs-details-content .information .info-data ul li {
  margin: 5px 0 5px 30px;
  font-size: 12px;
  font-weight: 400;
  color: #707275;
  display: grid;
  grid-template-columns: 20px auto;
}
.blogs-details-content .information .info-data ul li a {
  display: inline-block;
  color: #730a96;
}
.blogs-details-content .information .info-data ul li .fi {
  font-size: 14px;
  position: relative;
  top: 2px;
  color: #909294;
}
.blogs-details-content .information .info-data ul li .text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blogs-details-content .information .info-data ul li .text a {
  margin-left: 5px;
}
.blogs-details-content .blog-img-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin: 0;
}
.blogs-details-content .blog-img-container .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.blogs-details-content .blog-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.blogs-details-content .description {
  padding: 1rem;
  margin: 1rem 0;
}
.blogs-details-content .description .text {
  margin-bottom: 1rem;
}
.blogs-details-content .description .text h4 {
  font-size: 17px;
  font-weight: 500;
  margin: 2rem 0 1rem 0;
}
.blogs-details-content .description .text p {
  font-size: 15px;
  font-weight: 400;
  color: #707275;
  text-align: justify;
}

.blog-comments {
  padding-left: 30px;
  padding-top: 20px;
  border-top: 1px solid #d5d6d8;
}
.blog-comments .title-comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-comments .title-comment h2,.blog-comments .title-comment div {
  font-size: 22px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0;
}
.blog-comments .title-comment .btn {
  padding: 0.6rem 1rem 0.7rem 1rem;
}
.blog-comments .title-comment .btn .fi {
  font-size: 20px;
  margin-left: 10px;
  top: 3px;
}

.blog-tags {
  display: grid;
  grid-template-columns: 100px auto;
  align-items: flex-start;
  margin-top: 40px;
}
.blog-tags ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blog-tags ul li {
  margin: 0 0 10px 10px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  border: 1px solid #d5d6d8;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.blog-tags ul li:hover {
  border-color: #730a96;
  color: #730a96;
  transition: all 0.2s ease;
}

.share-blogs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 30px;
}
.share-blogs .list-share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.share-blogs .list-share li {
  margin: 0 0 10px 10px;
}
.share-blogs .list-share li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d5d6d8;
  border-radius: 5px;
  background-color: white;
  font-size: 24px;
  padding: 5px;
  color: #707275;
}
.share-blogs .list-share li a:hover {
  border-color: #730a96;
}
.share-blogs .list-share li a:hover svg {
  fill: #730a96;
}
.share-blogs .list-share li a svg {
  width: 100%;
  fill: #707275;
}
.share-blogs .link-preview {
  display: grid;
  grid-template-columns: auto 30px;
  align-items: center;
  border: 1px solid #d5d6d8;
  padding: 5px 10px 5px 5px;
  border-radius: 5px;
}
.share-blogs .link-preview .link {
  padding-left: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}
.share-blogs .link-preview .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-blogs .link-preview .icon .btn-copy {
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 5px;
  padding: 1px;
  width: 30px;
  height: 30px;
  color: #707275;
  font-size: 20px;
}
.share-blogs .link-preview .icon .btn-copy:hover {
  background-color: #730a96;
  color: white;
}
.share-blogs .link-preview .icon .btn-copy .fi {
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 2px;
}

.send-comments {
  margin: 2.5rem 0;
  border-top: 1px solid #d5d6d8;
  padding-top: 3rem;
}
.send-comments .send-title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.send-comments .button-group {
  margin-top: 1rem;
}
.send-comments .form-check {
  margin: 1rem 0 1rem 0;
}

.comments-list {
  margin-top: 20px;
  position: relative;
  z-index: 20;
}
.comments-list .comment-item {
  display: grid;
  grid-template-columns: 70px auto;
  padding-top: 20px;
  position: relative;
}
.comments-list .comment-item:last-child .user-info {
  border: none;
}
.comments-list .user-image {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
}
.comments-list .user-image::before {
  content: "";
  background-image: url(../images/default-user.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
}
.comments-list .user-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 0px;
}
.comments-list .user-info {
  background-color: white;
  border: 1px solid #d5d6d8;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.comments-list .user-info .name {
  font-size: 15px;
  font-weight: 800;
  color: #212529;
}
.comments-list .user-info .date {
  font-size: 12px;
  font-weight: 500;
  color: #909294;
}
.comments-list .user-info .text {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  line-height: 24px;
  margin-top: 0.8rem;
}
.comments-list .user-info .buttons-like {
  margin-top: 15px;
  text-align: left;
}
.comments-list .user-info .buttons-like .btn-like,
.comments-list .user-info .buttons-like .btn-reply {
  border: none;
  background-color: transparent;
  display: inline-block;
  border-radius: 5px;
  padding: 2px 5px;
}
.comments-list .user-info .buttons-like .btn-like .fi,
.comments-list .user-info .buttons-like .btn-reply .fi {
  line-height: normal;
  position: relative;
  top: 3px;
  margin-right: 5px;
  color: #730a96;
}
.comments-list .user-info .buttons-like .btn-like:hover,
.comments-list .user-info .buttons-like .btn-reply:hover {
  background-color: white;
}
.comments-list .user-info .buttons-like .btn-reply {
  margin-left: 30px;
}
.comments-list .reply-comment,
.comments-list .sub-reply-comment {
  margin-top: 25px;
  border-radius: 10px;
  position: relative;
}
.comments-list .reply-comment .user-image,
.comments-list .sub-reply-comment .user-image {
  position: absolute;
  top: 10px;
  right: -50px;
}
.comments-list .reply-comment .user-info,
.comments-list .sub-reply-comment .user-info {
  padding-right: 25px;
  border: 1px solid #d5d6d8;
  background-color: rgba(0, 0, 0, 0.05);
}
.comments-list .star-rate {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #730a96;
  padding: 2px 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.comments-list .star-rate .fi {
  font-size: 14px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.comments-list .star-rate .number {
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .blogs-section {
    padding: 2rem 0;
    margin-top: 1rem;
  }
  .blog-page-content {
    margin-top: 6rem;
  }
  .blog-page-content .grid-layout {
    grid-template-columns: 50% 50%;
    grid-template-areas: "g-bigimage g-width" "g-small-1 g-small-2";
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage {
    grid-area: g-bigimage;
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage .news-content .news-content-pic {
    height: 280px;
  }
  .blog-page-content .grid-layout .grid-item.grid-width .news-content .news-content-pic {
    height: 280px;
  }
  .blogs-details-content {
    padding-left: 0;
  }
  .blogs-details-content .information .title {
    font-size: 18px;
  }
  .blog-comments {
    padding-left: 0;
  }
  .blog-comments .title-comment h2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .blogs-section .section-inner {
    margin-top: 0.5rem;
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage {
    grid-area: g-bigimage;
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage .news-content .news-content-pic {
    height: 250px;
  }
  .blog-page-content .grid-layout .grid-item.grid-width .news-content .news-content-pic {
    height: 250px;
  }
  .blogs-list-page {
    margin-top: 0;
  }
  .blogs-list-page .cards-list-container .list-title {
    flex-direction: column;
  }
  .blogs-list-page .cards-list-container .list-title .title {
    flex: 0 0 100%;
    width: 100%;
  }
  .blogs-list-page .cards-list-container .list-title .sort {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 1rem;
    justify-content: flex-end;
  }
  .blogs-list-page .my-pagination {
    margin: 2rem 0;
  }
  .blogs-details-content .blog-img-container {
    height: 300px;
  }
  .comments-list .star-rate .number {
    font-size: 11px;
  }
  .comments-list .star-rate .fi {
    font-size: 12px;
  }
  .share-blogs {
    flex-direction: column;
  }
  .share-blogs .list-share {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .share-blogs .link-preview {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 557px) {
  .blogs-section .section-inner {
    margin-top: 0;
  }
  .blogs-section .nav-pills .nav-link {
    padding: 0.5rem 1rem;
    font-size: 12px;
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage .news-content .news-content-pic {
    height: 200px;
  }
  .blog-page-content .grid-layout .grid-item.grid-width .news-content .news-content-pic {
    height: 200px;
  }
  .blog-page-content .grid-layout .grid-item.grid-small-1 .news-content .news-content-pic, .blog-page-content .grid-layout .grid-item.grid-small-2 .news-content .news-content-pic {
    height: 200px;
  }
  .blog-page-content .grid-layout .grid-item .news-content .blog-data {
    padding: 10px;
  }
  .blog-page-content .grid-layout .grid-item .news-content .blog-data h2 {
    line-height: normal;
    font-size: 11px;
    margin-bottom: 0;
  }
  .blogs-details-content .blog-img-container {
    height: 220px;
  }
  .blog-comments .title-comment .btn {
    padding: 0.4rem 1rem 0.5rem 1rem;
  }
  .comments-list .comment-item {
    grid-template-columns: 50px auto;
  }
  .comments-list .user-image {
    width: 40px;
    height: 40px;
  }
  .comments-list .user-info {
    padding: 15px;
  }
  .comments-list .user-info .name {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .comments-list .user-info .date {
    font-size: 10px;
  }
  .comments-list .user-info .text {
    font-size: 12px;
    margin-top: 8px;
    text-align: justify;
  }
  .comments-list .user-info .buttons-like {
    margin-top: 10px;
  }
  .comments-list .reply-comment,
  .comments-list .sub-reply-comment {
    margin-top: 10px;
  }
  .comments-list .reply-comment .user-info,
  .comments-list .sub-reply-comment .user-info {
    padding-right: 20px;
  }
}
@media (max-width: 420px) {
  .blog-page-content {
    margin-top: 7rem;
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage .news-content .news-content-pic {
    height: 160px;
  }
  .blog-page-content .grid-layout .grid-item.grid-width .news-content .news-content-pic {
    height: 160px;
  }
  .blog-page-content .grid-layout .grid-item.grid-small-1 .news-content .news-content-pic,
  .blog-page-content .grid-layout .grid-item.grid-small-2 .news-content .news-content-pic {
    height: 160px;
  }
}
/*#endregion -------------- Blogs Styles */
/*#region ----------------- Footer */
.footer {
  background-color: #2fac66;
  position: relative;
}
.footer .footer-inner {
  padding-bottom: 40px;
}
.footer .footer-inner .logo-content {
  padding: 0 0 0 20px;
}
.footer .footer-inner .logo-content .logo a {
  display: block;
}
.footer .footer-inner .logo-content .logo img {
  width: 180px;
}
.footer .footer-inner .logo-content .desc {
  margin: 2rem 0;
}
.footer .footer-inner .logo-content .desc p {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-inner .logo-content .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer-inner .logo-content .social-icons ul li {
  margin-left: 10px;
}
.footer .footer-inner .logo-content .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #730a96;
  border-radius: 50%;
  padding: 10px;
}
.footer .footer-inner .logo-content .social-icons ul li a svg {
  width: 100%;
  fill: white;
}
.footer .footer-inner .quick-links {
  padding: 0 10px;
}
.footer .footer-inner .quick-links h5 {
  font-size: 18px;
  font-weight: 800;
  color: white;
}
.footer .footer-inner .quick-links ul {
  margin-top: 1.5rem;
}
.footer .footer-inner .quick-links ul li {
  margin-top: 10px;
}
.footer .footer-inner .quick-links ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-inner .quick-links ul li a:hover {
  color: #730a96;
}
.footer .newsletter {
  position: relative;
  top: -60px;
}
.footer .newsletter .news-inner {
  background-color: white;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  width: 600px;
  margin: 0 auto;
  padding: 20px 80px;
  border-radius: 20px;
}
.footer .newsletter .news-inner h6 {
  font-size: 14px;
  font-weight: 400;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 28px;
  text-align: center;
}
.footer .newsletter .news-input-group {
  position: relative;
}
.footer .newsletter .news-input-group .input {
  height: 44px;
  width: 100%;
  border: none;
  border-radius: 10px;
  text-align: right;
  padding: 2px 15px 2px 100px;
  background-color: #f1f2f3;
}
.footer .newsletter .news-input-group .btn-primary {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 90px;
  border: 4px solid #f1f2f3;
  border-radius: 12px;
}
.footer .copyright {
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 400;
  color: white;
}

@media (max-width: 992px) {
  .footer .footer-inner .logo-content .logo a {
    text-align: center;
  }
  .footer .footer-inner .logo-content .desc {
    margin: 1rem 0;
  }
  .footer .footer-inner .logo-content .desc p {
    text-align: center;
  }
  .footer .footer-inner .logo-content .social-icons {
    margin-bottom: 3rem;
  }
  .footer .footer-inner .logo-content .social-icons ul {
    justify-content: center;
  }
  .footer .footer-inner .logo-content .social-icons ul li {
    margin: 0 8px;
  }
  .footer .footer-inner .quick-links {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer .newsletter .news-inner {
    width: 100%;
    padding: 20px;
  }
}
/*#endregion -------------- Footer */
/*#region ----------------- Page Header */
.page-header {
  position: relative;
  height: 270px;
  overflow: hidden;
  z-index: -1;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 50%;
  transform: translateX(50%);
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 15;
  width: 220px;
  height: 220px;
  opacity: 0.07;
}
.page-header .svg-cover {
  position: relative;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  height: 100%;
}
.page-header .svg-cover svg,
.page-header .svg-cover path {
  width: 100% !important;
}
.page-header .page-inner {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  z-index: 50;
  padding-top: 50px;
}
.page-header .page-inner .text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .page-inner .text h1 {
  font-size: 28px;
  font-weight: 800;
  color: #2fac66;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .page-header {
    height: 280px;
  }
  .page-header .page-inner {
    padding-top: 40px;
  }
  .page-header .page-inner .text h1 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .page-header {
    height: 220px;
  }
  .page-header .page-inner {
    padding-top: 30px;
  }
  .page-header .page-inner .text h1 {
    font-size: 22px;
  }
}
/*#endregion -------------- Page Header */
/*#region ----------------- Page Section */
.page-section {
  margin-bottom: 7rem;
}
.page-section.p-relative {
  position: relative;
  top: -50px;
}
.page-section .section-inner {
  padding: 40px;
  background-color: white;
  border-radius: 15px;
  width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 35px -2px rgba(112, 114, 117, 0.1);
}
.page-section .page-icon {
  text-align: center;
  margin-bottom: 3rem;
}
.page-section .page-icon .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background-color: #730a96;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-section .page-icon .icon .fi {
  font-size: 24px;
  color: white;
  line-height: 0 !important;
}
.page-section .page-icon .desc {
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

@media (max-width: 992px) {
  .page-section .section-inner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-section .section-inner {
    padding: 20px;
  }
}
/*#endregion -------------- Page Section */
/*#region ----------------- Teacher Sign */
#regForm .tab-inner.w-50 {
  margin: 0 auto;
}
#regForm .mini-title {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  text-align: center;
  margin-bottom: 2rem;
}
#regForm .buttons-group {
  text-align: center;
  margin-top: 3rem;
}
#regForm .buttons-group .btn {
  margin: 0 20px;
}

.register-tab {
  display: none;
  animation: swipleft 0.3s ease-in-out;
}
.register-tab .forms-group {
  margin: 3rem 0;
}

@media (max-width: 992px) {
  #regForm .tab-inner.w-50 {
    width: 100% !important;
  }
}
@media (max-width: 450px) {
  #regForm .buttons-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #regForm .buttons-group .btn {
    margin: 10px 0;
    width: 100%;
  }
}
/*#endregion -------------- Teacher Sign */
/*#region ----------------- Forms */
.inputgroup {
  position: relative;
  margin-top: 40px;
  width: 100%;
}
.inputgroup label {
  position: absolute;
  top: calc(50% - 27px);
  right: 50px;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 500;
  background-color: #fff;
  visibility: hidden;
  color: #707275;
}
.inputgroup .input {
  width: 100%;
  margin-left: auto;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  padding-right: 60px;
  height: 50px;
  border: 1px solid #d5d6d8;
  border-radius: 50px;
  background: white;
  box-sizing: border-box;
  transition: all 0.3s linear;
  color: #212529;
  text-align: right;
}
.inputgroup .input:not(:-moz-placeholder-shown) {
  box-shadow: none;
  border-color: red;
}
.inputgroup .input:not(:placeholder-shown) {
  box-shadow: none;
  border-color: red;
}
.inputgroup .input:not(:-moz-placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 1;
  visibility: visible;
}
.inputgroup .input:not(:placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 1;
  visibility: visible;
}
.inputgroup .input:not(:-moz-placeholder-shown) ~ .alert-msg {
  visibility: visible;
}
.inputgroup .input:not(:placeholder-shown) ~ .alert-msg {
  visibility: visible;
}
.inputgroup .input:valid:not(:-moz-placeholder-shown) {
  border-color: #2fac66;
}
.inputgroup .input:valid:not(:placeholder-shown) {
  border-color: #2fac66;
}
.inputgroup .input:valid:not(:-moz-placeholder-shown) ~ .alert-msg {
  visibility: hidden;
}
.inputgroup .input:valid:not(:placeholder-shown) ~ .alert-msg {
  visibility: hidden;
}
.inputgroup .input:valid:not(:-moz-placeholder-shown) + label {
  color: #730a96;
}
.inputgroup .input:valid:not(:placeholder-shown) + label {
  color: #730a96;
}
.inputgroup .input:not(:valid):not(:focus) + label + .icon {
  animation: shake-shake 0.3s;
}
.inputgroup .input:disabled {
  border-color: #909294;
  background-color: rgba(0, 0, 0, 0.02);
}
.inputgroup .alert-msg {
  font-size: 12px;
  font-weight: 300;
  position: absolute;
  bottom: -22px;
  right: 5px;
  padding-right: 15px;
  color: red;
}
.inputgroup .icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(144, 146, 148, 0.5);
}
.inputgroup .icon .fi {
  font-size: 24px;
  position: relative;
  line-height: 0 !important;
}
.inputgroup.type-code .input {
  padding: 5px 15px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #707275;
}
.inputgroup.no-icon .input {
  padding: 5px 20px 5px 15px;
}
.inputgroup.no-icon label {
  right: 30px;
}
.inputgroup.have-label .input {
  padding-left: 60px;
}
.inputgroup .text-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 30px 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
}

.select-group {
  position: relative;
  margin-top: 40px;
  width: 100%;
}
.select-group label {
  font-size: 13px;
  font-weight: 500;
  background-color: #fff;
  color: #707275;
  padding: 0 5px;
  right: 25px;
  top: calc(50% - 36px);
  position: absolute;
  color: #707275;
}
.select-group .form-select {
  height: 50px;
  border-color: #d5d6d8;
  border-radius: 50px;
  transition: all 0.3s linear;
  color: #212529;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  padding-right: 20px;
}
.select-group .form-select:hover, .select-group .form-select:focus {
  border-color: #730a96;
  box-shadow: none !important;
}

.textarea-group {
  position: relative;
  margin-top: 30px;
  width: 100%;
}
.textarea-group label {
  font-size: 13px;
  font-weight: 500;
  background-color: #fff;
  color: #707275;
  margin-bottom: 5px;
  padding-right: 15px;
}
.textarea-group .form-control {
  text-align: right;
  font-size: 15px;
  font-weight: 400;
  border-radius: 15px;
  padding: 10px;
}
.textarea-group .form-control:hover, .textarea-group .form-control:focus {
  border-color: #730a96;
  box-shadow: none !important;
}

.form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
}
.form-check .form-check-input:checked {
  background-color: #730a96;
  border-color: #730a96;
}
.form-check .form-check-input:focus {
  box-shadow: none;
}

.input-counter {
  margin-top: 30px;
}
.input-counter label {
  font-size: 13px;
  font-weight: 500;
  background-color: #fff;
  color: #707275;
  margin-bottom: 10px;
  display: block;
}
.input-counter .stepper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.input-counter .stepper button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #2fac66;
  border: none;
}
.input-counter .stepper button .fi {
  line-height: 0;
  display: inline-block;
  color: white;
  position: relative;
  top: 4px;
  font-size: 14px;
}
.input-counter .stepper input {
  height: 38px;
  width: 80px;
  margin: 0 10px;
  padding: 2px 10px;
  border: 1px solid #d5d6d8;
  border-radius: 10px;
  text-align: center;
}

.file-upload-content {
  display: grid;
  grid-template-columns: auto 400px;
  align-items: center;
}
.file-upload-content .help-tips ul {
  list-style: disc;
  padding: 0;
  margin: 0;
  text-align: right;
  padding-right: 30px;
}
.file-upload-content .help-tips ul li {
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0;
  color: #444;
  position: relative;
}
.file-upload-content .help-tips ul li a {
  -webkit-text-decoration: underline 1px dashed blue !important;
  text-decoration: underline 1px dashed blue !important;
}

.radios-group {
  margin-top: 30px;
}
.radios-group .label {
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  color: #212529;
  margin-bottom: 5px;
}
.radios-group .radio-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}
.radios-group .form-check {
  margin: 0 0 10px 30px;
  cursor: pointer;
}
.radios-group .form-check .form-check-input,
.radios-group .form-check .form-check-label {
  cursor: pointer;
}

@media (max-width: 768px) {
  .file-upload-content {
    grid-template-columns: 100%;
  }
  .file-upload-content .help-tips {
    margin-top: 10px;
  }
}
/*#endregion -------------- Forms */
/*#region ----------------- Pagination */
.my-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.my-pagination .pagination {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.my-pagination .pagination .next .page-link,
.my-pagination .pagination .prev .page-link {
  width: auto;
}
.my-pagination .pagination .next .page-link .fi,
.my-pagination .pagination .prev .page-link .fi {
  position: relative;
  top: 4px;
}
.my-pagination .pagination .next span,
.my-pagination .pagination .prev span {
  font-size: 14px;
  font-weight: 600;
  color: #909294;
}
.my-pagination .pagination .next .page-link {
  color: #909294;
  padding: 0 10px 0 15px;
}
.my-pagination .pagination .next .page-link .fi {
  margin-left: 5px;
  color: #730a96;
}
.my-pagination .pagination .prev .page-link {
  color: #707275;
  padding: 0 15px 0 10px;
}
.my-pagination .pagination .prev .page-link .fi {
  margin-right: 5px;
  color: #730a96;
}
.my-pagination .pagination .page-item.active .page-link {
  background-color: #730a96;
  color: white;
  border-color: #730a96;
}
.my-pagination .pagination .page-link {
  background-color: white;
  border-radius: 10px;
  margin: 5px;
  font-weight: 600;
  color: #707275;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-pagination .pagination .page-link:hover {
  background-color: rgba(115, 10, 150, 0.2);
}

/*#endregion -------------- Pagination */
/*#region ----------------- Advice List */
.advice-list-section {
  margin: 8rem 0 10rem 0;
}
.advice-list-section .section-inner .section-grid {
  display: grid;
  grid-template-columns: 300px auto;
}
.advice-list-section .section-inner .section-grid .products-main {
  padding-right: 25px;
}

.side-filter .filter-inner {
  box-shadow: -10px 8px 25px -2px rgba(112, 114, 117, 0.1);
  border-radius: 15px;
  padding: 0 0 0 10px;
  position: sticky;
  top: 100px;
  background-color: white;
}
.side-filter .side-box {
  padding: 20px 15px 20px 5px;
  position: relative;
}
.side-filter .side-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, white 0%, #d5d6d8 100%);
}
.side-filter .side-box:last-child::before {
  display: none;
}
.side-filter .side-box .box-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-filter .side-box .box-title h2 {
  font-size: 15px;
  font-weight: 600;
  color: #2fac66;
  margin-bottom: 0;
}
.side-filter .side-box .box-title .btn-clean-filter {
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #730a96;
  border: none;
}
.side-filter .side-box .box-body {
  margin-top: 12px;
}
.side-filter .side-box .box-body .title {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  margin: 15px 0;
}
.side-filter .side-box .box-body .filter-choosen {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.side-filter .side-box .box-body .filter-choosen li {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  background-color: #f2f2f2;
  border-radius: 30px;
  padding: 5px 12px 5px 6px;
  margin: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-filter .side-box .box-body .filter-choosen li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #730a96;
  border-radius: 50%;
  color: white;
  margin-right: 10px;
}
.side-filter .side-box .box-body .filter-choosen li a .fi {
  font-size: 10px;
}
.side-filter .side-box .box-body .filter-choosen li .from,
.side-filter .side-box .box-body .filter-choosen li .to {
  font-size: 12px;
  font-weight: 400;
}
.side-filter .side-box .box-body .filter-choosen li .price {
  font-size: 13px;
  font-weight: 600;
  margin: 0 5px;
  color: #212529;
}
.side-filter .side-box .box-body .see-more {
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}
.side-filter .side-box .box-body .see-more .btn-seeMore-list {
  background-color: transparent;
  border: none;
  font-size: 13px;
  padding: 5px;
  color: #909294;
  position: relative;
}
.side-filter .side-box .box-body .see-more .btn-seeMore-list::before {
  content: "\f111";
  font-family: "uicons-regular-rounded";
  position: absolute;
  left: -10px;
  transform: rotate(-90deg);
  transition: all 0.2s ease-in-out;
}
.side-filter .side-box .box-body .see-more .btn-seeMore-list.active::before {
  transform: rotate(90deg);
}
.side-filter .side-box .list-of-checkbox {
  margin-top: 1rem;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-color: #fff;
  scrollbar-width: thin;
}
.side-filter .side-box .list-of-checkbox::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: #fff;
}
.side-filter .side-box .list-of-checkbox::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgb(192, 192, 192);
}
.side-filter .side-box .list-of-checkbox .form-check {
  margin-bottom: 10px;
  position: relative;
}
.side-filter .side-box .list-of-checkbox .form-check .form-check-label {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  cursor: pointer;
}
.side-filter .side-box .list-of-checkbox .form-check .form-check-input:focus {
  box-shadow: none;
}
.side-filter .side-box .apply-filter .btn {
  width: 100%;
  padding: 0.5rem 1rem;
}
.side-filter .side-box .sub-list-items ul li a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  padding: 0.4rem 2.2rem 0.4rem 0;
}
.side-filter .side-box .sub-list-items ul li.active a {
  color: #730a96;
}
.side-filter .side-box .sub-list-items ul li:hover a {
  color: #730a96;
}
.side-filter .side-collapse {
  padding-top: 10px;
  padding-left: 10px;
}
.side-filter .side-collapse .btn-collapse {
  padding: 0;
  height: 30px;
}
.side-filter .side-collapse .btn-collapse .title {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
}
.side-filter .side-collapse .btn-collapse .icon {
  left: 0;
  top: 0;
}
.side-filter .side-switch .form-switch {
  margin-bottom: 0;
}
.side-filter .side-switch .form-switch .form-check-label {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  cursor: pointer;
}
.side-filter .side-search .search-group {
  position: relative;
}
.side-filter .side-search .search-group .input {
  background-color: rgba(115, 10, 150, 0.05);
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #212529;
  height: 44px;
  padding: 0 20px 0 50px;
  width: 100%;
  transition: all 0.2s ease;
}
.side-filter .side-search .search-group .input:hover, .side-filter .side-search .search-group .input:focus {
  border-color: #730a96;
  transition: all 0.2s ease;
}
.side-filter .side-search .search-group .btn-search {
  width: 44px;
  height: 44px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #730a96;
  border: 3px solid #f4f5f6;
  border-radius: 50%;
  padding: 0;
}
.side-filter .side-search .search-group .btn-search .fi {
  font-size: 20px;
  color: white;
  position: relative;
  top: 4px;
  line-height: 0 !important;
}

.main-list {
  padding-right: 40px;
}
.main-list .list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.main-list .list-title h2 {
  font-size: 18px;
  font-weight: 800;
  color: #212529;
  margin-bottom: 0;
}
.main-list .list-title .sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-list .list-title .sort .btn-show-filter {
  background-color: #730a96;
  border: none;
  border-radius: 30px;
  padding: 3px 15px 9px 15px;
  height: 33px;
  font-size: 13px;
  white-space: nowrap;
  margin-left: 10px;
  color: white;
  display: none;
}
.main-list .list-title .sort .btn-show-filter .fi {
  line-height: 0 !important;
  font-size: 16px;
  margin-left: 10px;
  position: relative;
  top: 5px;
}
.main-list .list-title .sort .form-select {
  border-radius: 50px;
  height: 33px;
  font-size: 13px;
  color: #707275;
}
.main-list .list-title .sort .form-select:hover, .main-list .list-title .sort .form-select:focus {
  box-shadow: none;
}

.mobile-advanced-Search-style {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1500;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-clip: padding-box;
}
.mobile-advanced-Search-style.active {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  transition: all 0.2s ease;
}
.mobile-advanced-Search-style .filter-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border: 1px solid #d5d6d8;
  background-color: white;
}
.mobile-advanced-Search-style .filter-header h2 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.mobile-advanced-Search-style .filter-header h2 .fi {
  margin-left: 5px;
  font-size: 22px;
  position: relative;
  top: 3px;
}
.mobile-advanced-Search-style .filter-header .btn-close-filter {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
}
.mobile-advanced-Search-style .filter-header .btn-close-filter .fi {
  font-size: 24px;
  line-height: 0;
  position: relative;
  top: 4px;
  color: #707275;
}
.mobile-advanced-Search-style .filter-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  background-color: #fff;
  overflow-y: auto;
  display: block;
}
.mobile-advanced-Search-style .filter-body .clear-filter {
  margin-bottom: 10px;
  text-align: left;
}
.mobile-advanced-Search-style .filter-body .clear-filter .btn-clearfilter {
  background-color: transparent;
  border: 1px solid #730a96;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 30px;
  color: #730a96;
}
.mobile-advanced-Search-style .filter-body .filter-inner {
  box-shadow: none;
  position: unset;
  top: 0;
}
.mobile-advanced-Search-style .filter-footer {
  border-top: 1px solid #d5d6d8;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-advanced-Search-style .filter-footer .btn {
  width: 100%;
  height: 48px;
  border-radius: 0;
}
.mobile-advanced-Search-style .filter-footer .btn .fi {
  margin-left: 8px;
  font-size: 16px;
  position: relative;
  top: 2px;
}
.mobile-advanced-Search-style .filter-footer .btn:focus {
  box-shadow: none;
}

@media (max-width: 1199px) {
  .advice-list-section .section-inner .section-grid {
    grid-template-columns: 250px auto;
  }
}
@media (max-width: 992px) {
  .advice-list-section .section-inner .section-grid {
    grid-template-columns: 100%;
  }
  .main-list {
    padding-right: 0;
    order: 1;
  }
  .main-list .list-title .sort .btn-show-filter {
    display: block;
  }
  .side-filter {
    order: 2;
    margin-top: 3rem;
  }
  .side-filter .filter-inner {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 575px) {
  .main-list .list-title {
    flex-direction: column;
  }
  .main-list .list-title h2 {
    width: 100%;
  }
  .main-list .list-title .sort {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 1rem;
  }
  .main-list .list-title .sort .btn-show-filter {
    margin: 5px;
  }
  .main-list .list-title .sort .form-select {
    width: unset;
    margin: 5px;
  }
}
@media (max-width: 450px) {
  .main-list .list-title .sort .btn-show-filter {
    width: 48%;
  }
  .main-list .list-title .sort .form-select {
    width: 48%;
  }
}
/*#endregion -------------- Advice List */
/*#region ----------------- Modal */
.modal-video video,
.modal-video iframe {
  width: 100%;
  border-radius: 10px;
}

.modal-user-info {
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  margin-top: 2rem;
}
.modal-user-info .user-image {
  width: 70px;
  height: 70px;
}
.modal-user-info .user-image img {
  width: 100%;
  border-radius: 50%;
}
.modal-user-info .info {
  padding-right: 15px;
}
.modal-user-info .info h2 {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.modal-user-info .info .activity {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
}

.modal-title {
  font-size: 16px;
}
.modal-title .fi {
  margin-left: 10px;
  font-size: 20px;
  position: relative;
  top: 5px;
  line-height: 0;
  display: inline-block;
  color: #2fac66;
}

.modal-content {
  border: none;
  border-radius: 15px;
}

.modal-body .msg {
  font-size: 14px;
  color: #707275;
  margin: 1rem 0;
}
.modal-body .video-preview video,
.modal-body .video-preview iframe {
  width: 100%;
  border-radius: 10px;
}
.modal-body .video-upload-tips h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #212529;
}
.modal-body .video-upload-tips h6 {
  font-size: 14px;
  color: #212529;
}
.modal-body .video-upload-tips ul {
  list-style: disc;
  padding-right: 20px;
  margin: 0.5rem 0 1rem 0;
}
.modal-body .video-upload-tips ul li {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 5px;
}
.modal-body .video-upload-tips p {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 0;
}

.modal-footer {
  border: none;
}
.modal-footer .btn .fi {
  margin: 0 0 0 10px;
}
.modal-footer.modal-footer-flex {
  justify-content: space-between;
  border-top: 1px solid #d5d6d8;
}

@media (max-width: 575px) {
  .modal-footer.modal-footer-flex {
    flex-direction: column;
  }
}
/*#endregion -------------- Modal */
/*#region ----------------- Advice List */
.advice-details-section {
  margin: 73px 0 150px 0;
}

.advice-header .img-inner img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.advice-profile .profile-inner {
  display: grid;
  grid-template-columns: 130px auto;
  align-items: flex-start;
}
.advice-profile .image {
  position: relative;
  top: -50px;
}
.advice-profile .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
}
.advice-profile .details {
  padding: 1rem 1rem 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.advice-profile .details .info .name {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}
.advice-profile .details .info .rate {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advice-profile .details .info .rate .stars-list {
  display: flex;
  align-items: center;
}
.advice-profile .details .info .rate .stars-list li {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e2e2e4'%3E%3Cpath d='M1.327,12.4,4.887,15,3.535,19.187A3.178,3.178,0,0,0,4.719,22.8a3.177,3.177,0,0,0,3.8-.019L12,20.219l3.482,2.559a3.227,3.227,0,0,0,4.983-3.591L19.113,15l3.56-2.6a3.227,3.227,0,0,0-1.9-5.832H16.4L15.073,2.432a3.227,3.227,0,0,0-6.146,0L7.6,6.568H3.231a3.227,3.227,0,0,0-1.9,5.832Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-left: 3px;
}
.advice-profile .details .info .rate .stars-list li.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0c61f'%3E%3Cpath d='M1.327,12.4,4.887,15,3.535,19.187A3.178,3.178,0,0,0,4.719,22.8a3.177,3.177,0,0,0,3.8-.019L12,20.219l3.482,2.559a3.227,3.227,0,0,0,4.983-3.591L19.113,15l3.56-2.6a3.227,3.227,0,0,0-1.9-5.832H16.4L15.073,2.432a3.227,3.227,0,0,0-6.146,0L7.6,6.568H3.231a3.227,3.227,0,0,0-1.9,5.832Z' /%3E%3C/svg%3E");
}
.advice-profile .details .info .rate .rate-info {
  font-size: 13px;
  font-weight: 500;
  color: #707275;
  margin-right: 10px;
}
.advice-profile .details .info .rate .rate-info span {
  margin-right: 5px;
  font-weight: 400;
}
.advice-profile .details .info .property {
  margin-top: 1rem;
}
.advice-profile .details .info .property li {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 5px;
}
.advice-profile .details .info .property li .fi {
  font-size: 16px;
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.advice-profile .details .button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.advice-profile .details .button-group .btn {
  padding: 0.7rem 1.2rem;
  margin-bottom: 10px;
  width: 200px;
}
.advice-profile .details .button-group .btn .fi {
  font-size: 18px;
  display: inline-block;
  line-height: 0 !important;
  margin-left: 10px;
  margin-right: 0;
}

.advice-description {
  display: grid;
  grid-template-columns: auto 350px;
  margin-top: 2rem;
}
.advice-description .description-inner {
  padding-left: 40px;
}
.advice-description .video-preview .preview-inner {
  position: sticky;
  top: 100px;
  padding: 20px 15px 20px 15px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 10px 2px 22px 1px rgba(33, 37, 41, 0.1);
}
.advice-description .video-preview .video-inner video {
  width: 100%;
  border-radius: 10px;
}
.advice-description .video-preview .button-group {
  margin-top: 1rem;
}
.advice-description .video-preview .button-group .btn {
  width: 100%;
}
.advice-description .video-preview .price {
  padding: 2rem 0 1rem 0;
  text-align: center;
}
.advice-description .video-preview .price h6 {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 0;
}
.advice-description .video-preview .price span {
  font-size: 17px;
  font-weight: 600;
  color: #212529;
  margin: 0 3px;
}
.advice-description .video-preview .msg-alert {
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
}
.advice-description .video-preview .msg-alert.primary {
  background-color: rgba(47, 172, 102, 0.2);
  color: #2fac66;
}
.advice-description .video-preview .msg-alert.error {
  background-color: rgba(255, 0, 0, 0.2);
  color: red;
}
.advice-description .video-preview .msg-alert.warning {
  background-color: rgba(115, 10, 150, 0.2);
  color: #500868;
}
.advice-description .video-preview .msg-alert.success {
  background-color: rgba(114, 224, 36, 0.2);
  color: #212529;
}
.advice-description .page-title {
  display: flex;
  align-items: center;
  position: relative;
}
.advice-description .page-title::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 100%;
  height: 1px;
  border: 1px dashed #d5d6d8;
  z-index: -1;
}
.advice-description .page-title .icon {
  background-color: #2fac66;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.advice-description .page-title .icon .fi {
  display: inline-block;
  line-height: 0;
}
.advice-description .page-title h2 {
  font-size: 19px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0;
  padding: 0 20px;
  display: inline-block;
  background-color: white;
}
.advice-description .text-content {
  margin-bottom: 2rem;
}
.advice-description .text-content .text-inner {
  margin-top: 1.5rem;
  position: relative;
  overflow-y: hidden;
  height: 220px;
}
.advice-description .text-content .text-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.advice-description .text-content .text-inner.active {
  height: 100%;
}
.advice-description .text-content .text-inner.active::before {
  display: none;
}
.advice-description .text-content .text-inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  color: #707275;
}
.advice-description .text-content .text-inner ul {
  list-style: disc !important;
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.advice-description .text-content .text-inner ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  text-align: justify;
  color: #707275;
  margin-bottom: 5px;
}
.advice-description .text-content .see-more {
  text-align: center;
  padding-top: 1rem;
}
.advice-description .text-content .see-more .btn-see-more {
  background-color: white;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #2fac66;
  position: relative;
}
.advice-description .text-content .see-more .btn-see-more::before {
  content: "\f10d";
  font-family: "uicons-regular-rounded";
  position: absolute;
  top: 1px;
  left: -15px;
  font-size: 12px;
}
.advice-description .text-content .see-more .btn-see-more.active::before {
  content: "\f114";
}
.advice-description .nav-tabs {
  border-color: #d5d6d8;
}
.advice-description .nav-tabs .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #707275;
  border-radius: 0;
  border: none;
  border-bottom: 4px solid transparent;
  padding: 1rem 1.5rem;
}
.advice-description .nav-tabs .nav-link.active {
  font-weight: 600;
  color: #730a96;
  border-color: #730a96;
}
.advice-description .nav-tabs .nav-link:hover {
  background-color: rgba(112, 114, 117, 0.1);
}
.advice-description .nav-tabs .nav-link .fi {
  font-size: 16px;
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-left: 7px;
}
.advice-description .tab-inner {
  margin-top: 2rem;
}

.gallery-section {
  margin: 2rem 0 3rem 0;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  margin-top: 2rem;
}

.documents-section {
  border: 1px solid #d5d6d8;
  border-radius: 10px;
  background-color: white;
}
.documents-section .doc-item {
  padding: 10px;
  display: grid;
  grid-template-columns: 130px auto;
  transition: all 0.2s ease-in-out;
}
.documents-section .doc-item .img-container {
  width: 130px;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.documents-section .doc-item .img-container .img-inner {
  display: block;
}
.documents-section .doc-item .img-container .img-inner img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.documents-section .doc-item .info {
  padding: 10px 15px 0 0;
}
.documents-section .doc-item .info h2 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}
.documents-section .doc-item .info p {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  margin-bottom: 0;
}
.documents-section .doc-item:hover .img-container .img-inner img {
  border-radius: 10px;
  transform: scale(1.1);
}

@media (max-width: 1199px) {
  .advice-profile .profile-inner {
    grid-template-columns: 100px auto;
  }
  .advice-profile .image {
    top: -30px;
  }
  .advice-profile .details .info .name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .advice-profile .details .info .rate .stars-list li {
    width: 14px;
    height: 14px;
  }
  .advice-profile .details .info .property {
    margin-top: 0.8rem;
  }
  .advice-profile .details .info .property li {
    font-size: 11px;
  }
  .advice-profile .details .info .property li .fi {
    font-size: 14px;
  }
  .advice-profile .details .button-group .btn {
    width: 170px;
    padding: 0.5rem 1rem;
  }
  .advice-profile .details .button-group .btn .fi {
    font-size: 16px;
  }
  .advice-description {
    grid-template-columns: auto 300px;
    margin-top: 1.5rem;
  }
  .advice-description .page-title::before {
    top: 16px;
  }
  .advice-description .page-title .icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .advice-description .page-title h2 {
    font-size: 17px;
    padding: 0 15px;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 992px) {
  .advice-details-section {
    margin-top: 60px;
  }
  .advice-description .text-content .text-inner p {
    font-size: 13px;
  }
  .advice-description .text-content .text-inner ul li {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .advice-profile .profile-inner {
    grid-template-columns: 100%;
  }
  .advice-profile .image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .advice-profile .image img {
    border-width: 3px;
  }
  .advice-profile .details {
    padding: 0 0 1rem 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    top: -15px;
  }
  .advice-profile .details .button-group {
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .advice-profile .details .button-group .btn {
    margin: 5px;
    flex-grow: 1;
  }
  .advice-description {
    margin-top: 0;
    grid-template-columns: 100%;
  }
  .advice-description .description-inner {
    order: 2;
  }
  .advice-description .video-preview {
    order: 1;
  }
  .advice-description .video-preview .preview-inner {
    box-shadow: none;
    padding: 0 15px 20px 15px;
  }
  .advice-description .description-inner {
    padding: 20px 0 0 0;
  }
  .advice-description .nav-tabs .nav-link {
    flex-grow: 1;
    padding: 1rem 0.5rem;
  }
  .advice-description .text-content .text-inner p {
    font-size: 12px;
  }
  .advice-description .text-content .text-inner ul li {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .gallery-section .gallery-grid.video-grid {
    grid-template-columns: 100%;
  }
  .advice-description .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
    padding: 0.5rem 0.2rem;
  }
  .advice-description .nav-tabs .nav-link .fi {
    margin: 0 0 12px 0;
  }
  .documents-section .doc-item {
    grid-template-columns: 110px auto;
  }
  .documents-section .doc-item .img-container {
    width: 110px;
    height: 100%;
  }
  .documents-section .doc-item .info h2 {
    font-size: 13px;
  }
  .documents-section .doc-item .info p {
    font-size: 11px;
  }
}
@media (max-width: 400px) {
  .advice-description .nav-tabs .nav-link {
    font-size: 10px;
    padding: 0.4rem 0.1rem;
  }
}
/*#endregion -------------- Advice List */
/*#region ----------------- Login */
.login-wrapper {
  position: relative;
  top: -50px;
  margin-bottom: 8rem;
}
.login-wrapper .login-inner {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 35px -2px rgba(112, 114, 117, 0.1);
  margin: 0 auto;
  padding: 20px;
  width: 540px;
}
.login-wrapper .nav-tabs {
  border: none;
}
.login-wrapper .nav-tabs .nav-link {
  background-color: rgba(144, 146, 148, 0.1);
  position: relative;
  padding: 1rem;
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  border: none;
  border-radius: 10px;
}
.login-wrapper .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 3px;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.login-wrapper .nav-tabs .nav-link.active {
  color: white;
  background-color: #2fac66;
}
.login-wrapper .nav-tabs .nav-link.active::before {
  background-color: white;
  width: 60%;
}
.login-wrapper .login-form {
  margin-top: 2rem;
}
.login-wrapper .enter-mobile-number,
.login-wrapper .enter-code {
  display: none;
  animation: swipeRightsmall 0.2s ease-in-out;
}
.login-wrapper .enter-mobile-number.active,
.login-wrapper .enter-code.active {
  display: block;
}
.login-wrapper .buttons-group {
  margin-top: 1.2rem;
}
.login-wrapper .buttons-group .btn {
  width: 100%;
}
.login-wrapper .link-button {
  text-align: center;
  margin-top: 1rem;
}
.login-wrapper .link-button h6 {
  font-size: 13px;
  margin-bottom: 0;
  color: #707275;
}
.login-wrapper .link-button .btn-link {
  padding: 0;
  margin-right: 15px;
  font-size: 13px;
  -webkit-text-decoration: underline 1px dashed blue !important;
  text-decoration: underline 1px dashed blue !important;
}
.login-wrapper .other-button {
  border-top: 1px dashed #d5d6d8;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-wrapper .other-button .btn {
  flex: 0 1 49%;
  width: 49%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(112, 114, 117, 0.1);
  color: #707275;
}
.login-wrapper .other-button .btn img {
  width: 24px;
  height: auto;
  margin-left: 5px;
}
.login-wrapper .msg-form {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  text-align: center;
}
.login-wrapper .msg-form span {
  color: #3f9eff;
  margin: 0 5px;
}
.login-wrapper .resend-code {
  padding: 10px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-wrapper .resend-code .btn-link {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  -webkit-text-decoration: underline 1px dashed #3f9eff;
  text-decoration: underline 1px dashed #3f9eff;
}
.login-wrapper .resend-code .btn-link .fi {
  color: #730a96;
  margin-left: 10px;
}

@media (max-width: 575px) {
  .login-wrapper .login-inner {
    width: 100%;
  }
  .login-wrapper .resend-code {
    flex-direction: column;
  }
  .login-wrapper .resend-code .btn {
    margin-bottom: 1rem;
  }
  .login-wrapper .resend-code .btn:last-child {
    margin-bottom: 0;
  }
  .login-wrapper .link-button h6 {
    display: block;
  }
  .login-wrapper .link-button .btn {
    display: block;
    margin: 10px 0 0 0;
  }
  .login-wrapper .other-button {
    flex-direction: column;
  }
  .login-wrapper .other-button .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  .login-wrapper .other-button .btn:last-child {
    margin-bottom: 0;
  }
}
/*#endregion -------------- Login */
/*#region ----------------- User Profile */
.user-profile-section {
  margin: 7rem 0 10rem 0;
}
.user-profile-section .grid-layout {
  display: grid;
  grid-template-columns: 25% 75%;
}
.user-profile-section .grid-user-menu {
  transition: all 0.2s ease-in-out;
}
.user-profile-section .grid-user-menu .grid-inner {
  box-shadow: -10px 2px 22px 1px rgba(33, 37, 41, 0.1);
  border-radius: 15px;
  background-color: white;
  position: relative;
}
.user-profile-section .grid-main {
  padding-right: 40px;
}
.user-profile-section .user-image {
  padding: 30px 15px 15px 15px;
}
.user-profile-section .user-image .img-inner {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  position: relative;
}
.user-profile-section .user-image .img-inner img {
  width: 100%;
  border-radius: 15px;
  border: 3px solid white;
  box-shadow: 0 8px 15px rgba(112, 114, 117, 0.4);
}
.user-profile-section .user-image .btn-opernImage {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 34px;
  height: 34px;
  background-color: #2fac66;
  padding: 2px;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  border: 2px solid white;
}
.user-profile-section .user-image .btn-opernImage .fi {
  position: relative;
  top: 3px;
}
.user-profile-section .user-image .user-name {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #707275;
  margin-top: 1.2rem;
}
.user-profile-section .user-menu {
  padding: 20px 15px 15px 15px;
  position: relative;
}
.user-profile-section .user-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, white 0%, #d5d6d8 100%);
}
.user-profile-section .user-menu .btn-collape,
.user-profile-section .user-menu .sub-btn-collape {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  display: inline-block;
  padding: 8px 5px;
  position: relative;
  width: 100%;
  transition: all 0.2s ease-in;
}
.user-profile-section .user-menu .btn-collape .fi,
.user-profile-section .user-menu .sub-btn-collape .fi {
  font-size: 20px;
  position: relative;
  top: 6px;
  margin-left: 10px;
  color: #909294;
  transition: all 0.2s ease-in;
}
.user-profile-section .user-menu .btn-collape.dropdown::before,
.user-profile-section .user-menu .sub-btn-collape.dropdown::before {
  content: "\f10d";
  font-family: "uicons-regular-rounded";
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 12px;
  color: #909294;
  transform: rotate(0deg);
}
.user-profile-section .user-menu .btn-collape.collapsed.dropdown::before,
.user-profile-section .user-menu .sub-btn-collape.collapsed.dropdown::before {
  transform: rotate(90deg);
}
.user-profile-section .user-menu .btn-collape:hover,
.user-profile-section .user-menu .sub-btn-collape:hover {
  color: #730a96 !important;
}
.user-profile-section .user-menu .btn-collape:hover .fi,
.user-profile-section .user-menu .sub-btn-collape:hover .fi {
  color: #212529;
}
.user-profile-section .user-menu .sub-menu-list {
  background-color: rgba(112, 114, 117, 0.1);
  padding: 10px 20px 10px 10px;
  border-radius: 10px;
}
.user-profile-section .user-menu .sub-menu-list .btn-collape {
  color: #707275;
}
.user-profile-section .user-menu .menu-item.active .btn-collape {
  color: #730a96 !important;
}
.user-profile-section .user-menu .menu-item.active .btn-collape .fi {
  color: #730a96;
}
.user-profile-section .user-menu .sub-menu-item.active .sub-btn-collape {
  color: #730a96 !important;
}
.user-profile-section .user-menu .sub-menu-item.active .sub-btn-collape .fi {
  color: #730a96;
}
.user-profile-section .main-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.user-profile-section .main-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, white 0%, #d5d6d8 100%);
}
.user-profile-section .main-title .title-inner {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
}
.user-profile-section .main-title .icon {
  width: 40px;
  height: 40px;
  background-color: rgba(115, 10, 150, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-profile-section .main-title .icon .fi {
  color: #730a96;
  line-height: 0 !important;
  display: inline-block;
  font-size: 18px;
}
.user-profile-section .main-title h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 20px;
}
.user-profile-section .main-title .buttons-group .btn {
  padding: 0.4rem 1rem 0.7rem 1rem;
}
.user-profile-section .main-title .buttons-group .btn.icon-right .fi {
  margin: 0 0 0 10px;
}
.user-profile-section .main-title .buttons-group .btn.icon-left .fi {
  margin: 0 10px 0 0;
}
.user-profile-section .main-title .buttons-group .fi {
  font-size: 20px;
  line-height: 0 !important;
  display: inline-block !important;
  position: relative;
  top: 6px;
}
.user-profile-section .main-body {
  margin-top: 1.5rem;
}
.user-profile-section .description p {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  text-align: justify;
}

.btn-usermenu {
  display: none;
  padding: 0.5rem 1rem 0.8rem 1rem;
  background-color: #730a96;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  color: white;
  box-shadow: 0 5px 25px -1px rgba(112, 114, 117, 0.1);
}
.btn-usermenu .fi {
  margin-left: 10px;
  font-size: 20px;
  display: inline-block;
  line-height: 0;
  position: relative;
  top: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.btn-closeprofileMenu {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 45px;
  height: 45px;
  color: #707275;
  background-color: transparent;
  border: none;
  padding: 0;
  display: none;
}
.btn-closeprofileMenu .fi {
  font-size: 24px;
  position: relative;
  top: 4px;
}
.btn-closeprofileMenu:hover {
  color: #730a96;
}

.overlay-userMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1998;
  opacity: 0;
  transition: all 0.3s;
}
.overlay-userMenu.active {
  display: block;
  opacity: 1;
}

.center-banner {
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.center-banner .banner-title {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0;
}
.center-banner .icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #2fac66;
  border-radius: 50%;
  padding: 5px;
  margin-left: 10px;
}
.center-banner .icon svg {
  width: 100%;
  fill: white;
}

.profile-status {
  margin: 3rem 0;
}
.profile-status .status-title {
  text-align: center;
}
.profile-status .status-title h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.profile-status .status-title h3 span {
  margin-right: 5px;
}
.profile-status .status-title h3 span.success {
  color: #72e024;
}
.profile-status .status-title h3 span.error {
  color: #df0538;
}
.profile-status .status-title p {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
}
.profile-status .status-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.profile-status .status-inner .item {
  flex: 0 0 20%;
  width: 20%;
  padding: 0 5px;
  text-align: center;
}
.profile-status .status-inner .item .icon {
  margin-bottom: 10px;
}
.profile-status .status-inner .item .icon img {
  height: 50px;
}
.profile-status .status-inner .item .name {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 10px;
}
.profile-status .status-inner .item .check {
  width: 22px;
  height: 22px;
  margin: 0 auto;
}
.profile-status .status-inner .item .check svg {
  width: 100%;
  fill: #909294;
}
.profile-status .status-inner .item .check.success svg {
  fill: #2fac66;
}
.profile-status .status-inner .item .button-group {
  margin-top: 10px;
}
.profile-status .status-inner .item .button-group .btn {
  font-size: 13px;
  padding: 0.6rem 1rem;
}

.my-activities {
  margin: 4rem 0 3rem 0;
}
.my-activities .active-title {
  text-align: center;
}
.my-activities .active-title h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.my-activities .activite-layout {
  display: grid;
  grid-template-columns: auto 350px;
  margin-top: 2rem;
}
.my-activities .grid-activitie {
  padding-left: 20px;
}
.my-activities .grid-activitie ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.my-activities .grid-activitie ul li {
  flex: 0 0 50%;
  width: 50%;
  padding: 10px;
  height: 100%;
}
.my-activities .grid-activitie ul .act-inner {
  display: grid;
  grid-template-columns: 48px auto;
  background-color: white;
  box-shadow: 0px 8px 25px -2px rgba(112, 114, 117, 0.1);
  border-radius: 8px;
  padding: 10px;
  height: 100%;
}
.my-activities .grid-activitie ul .icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: rgba(115, 10, 150, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-activities .grid-activitie ul .icon .fi {
  display: inline-block;
  line-height: 0;
  color: #730a96;
}
.my-activities .grid-activitie ul .info {
  padding-right: 10px;
}
.my-activities .grid-activitie ul .info h6 {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
}
.my-activities .grid-activitie ul .info p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
}
.my-activities .grid-activitie ul .info p strong {
  margin-left: 3px;
  font-size: 16px;
}

.wallet {
  width: 350px;
  margin: 0 auto 1rem auto;
}

.paying {
  margin-bottom: 2rem;
  border-bottom: 1px solid #d5d6d8;
  padding-bottom: 2rem;
}
.paying .pay-title {
  margin-bottom: 1rem;
}
.paying .pay-title .name {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
}
.paying .pay-title .price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}
.paying .pay-title .price .number {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}
.paying .pay-title .price .number span {
  font-size: 13px;
  font-weight: 400;
  margin: 0 10px;
}
.paying .pay-title .price .max-pay {
  font-size: 14px;
  color: #909294;
}
.paying .pay-title .price .max-pay strong {
  font-size: 16px;
  margin: 0 5px;
  color: #212529;
}
.paying .inputgroup {
  margin-top: 0;
}

.card-credit .card-inner {
  border-radius: 15px;
  background-image: url(../images/background/creadit-card-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 350px;
  box-shadow: 0 5px 20px rgba(47, 172, 102, 0.1);
  min-height: 216px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.card-credit .name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
}
.card-credit .credit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding-left: 10px;
}
.card-credit .credit .price h6 {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.card-credit .credit .price .number {
  font-size: 16px;
  font-weight: 800;
  color: white;
}
.card-credit .credit .price .number span {
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}
.card-credit .credit .see-details .btn-link {
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-credit .credit .see-details .btn-link .fi {
  display: inline-block;
  line-height: 0;
  color: white;
}

.profile-tab-content .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 10px 10px 0 0;
  padding: 1rem;
  font-size: 14px;
  color: #909294;
}
.profile-tab-content .nav-link.active {
  background-color: rgba(115, 10, 150, 0.1);
  color: #730a96;
  border-bottom-color: #730a96;
}
.profile-tab-content .nav-link.active .badge.bg-secondary {
  background-color: #2fac66 !important;
  color: white;
}
.profile-tab-content .nav-link .badge {
  margin-right: 10px;
  font-size: 12px;
}
.profile-tab-content .nav-link .badge.bg-secondary {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: #2fac66;
}
.profile-tab-content .tab-content {
  margin-top: 1.5rem;
}
.profile-tab-content .empty-tab {
  text-align: center;
  margin: 4rem 0;
}
.profile-tab-content .empty-tab .icon img {
  width: 180px;
}
.profile-tab-content .empty-tab h6 {
  margin: 1rem 0;
  font-size: 13px;
  color: #707275;
}

.forms-group .apply-buttons-group {
  text-align: right;
  margin-top: 30px;
}
.forms-group .apply-buttons-group .btn {
  min-width: 170px;
}

.tags-list {
  margin-top: 30px;
}
.tags-list .label {
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  color: #212529;
  margin-bottom: 5px;
}
.tags-list .list-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tags-list .form-check {
  padding: 0.5em 2em 0.5em 1em;
  margin: 0 0 8px 8px;
  position: relative;
}
.tags-list .form-check .form-check-input {
  margin-right: -1.5em;
}
.tags-list .form-check .form-check-input:checked + .form-check-label {
  color: white;
}
.tags-list .form-check .form-check-input:checked + .form-check-label::before {
  background-color: #2fac66;
}
.tags-list .form-check .form-check-label::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.05);
}

.row-section {
  margin-top: 2rem;
}
.row-section h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
}
.row-section p {
  font-size: 14px;
  font-weight: 400;
  color: #707275;
  text-align: justify;
}

.package-cards-group {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  align-items: center;
}
.package-cards-group .item {
  padding: 10px;
  height: 120px;
}
.package-cards-group .item .item-inner {
  background-color: rgba(47, 172, 102, 0.1);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.package-cards-group .item .name {
  font-size: 14px;
  margin-bottom: 0;
  color: #707275;
  margin-bottom: 1rem;
}
.package-cards-group .item .price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.package-cards-group .item .price h5 {
  font-size: 18px;
  color: #2fac66;
  margin-bottom: 0;
}
.package-cards-group .item .price span {
  font-size: 13px;
  margin-right: 10px;
}

.price-row-section {
  margin-top: 40px;
}
.price-row-section .select-group {
  margin-top: 0;
}
.price-row-section .calculate-price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.price-row-section .calculate-price .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #909294;
  margin-left: 20px;
  font-size: 40px;
  line-height: 0;
}
.price-row-section .calculate-price .icon .fi {
  font-size: 20px;
  line-height: 0;
  display: inline-block;
}
.price-row-section .calculate-price .number,
.price-row-section .calculate-price .price {
  font-size: 20px;
  font-weight: 800;
  width: 60px;
  height: 40px;
  color: #707275;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-row-section .calculate-price .number span,
.price-row-section .calculate-price .price span {
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
  color: #909294;
}

.line-gradient {
  background: linear-gradient(90deg, white 0%, #d5d6d8 100%);
  opacity: 1;
}

@media (max-width: 1199px) {
  .profile-status .status-inner .item {
    flex: 0 0 33.33%;
    width: 33.33%;
    margin-top: 1rem;
  }
  .my-activities .activite-layout {
    grid-template-columns: 100%;
  }
  .my-activities .grid-activitie {
    padding: 0 0 20px 0;
  }
  .card-credit {
    width: 350px;
    margin: 0 auto;
  }
  .package-cards-group {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 992px) {
  .user-profile-section {
    margin: 6rem 0 8rem 0;
  }
  .user-profile-section .grid-layout {
    grid-template-columns: 100%;
  }
  .user-profile-section .grid-user-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    z-index: 1999;
  }
  .user-profile-section .grid-user-menu .grid-inner {
    position: relative;
    z-index: 2000;
    height: 100%;
    overflow-y: auto;
    transition: all 0.3s;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px 0 0 15px;
  }
  .user-profile-section .grid-user-menu.active {
    right: 0;
  }
  .user-profile-section .grid-main {
    padding: 0;
  }
  .user-profile-section .main-title .icon {
    background-color: white;
    box-shadow: 0 5px 25px -1px rgba(112, 114, 117, 0.1);
  }
  .user-profile-section .main-title .icon .fi {
    color: #730a96;
  }
  .btn-closeprofileMenu,
  .btn-usermenu {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .profile-status .status-title h3 {
    font-size: 18px;
  }
  .profile-status .status-title p {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .profile-status .status-inner .item {
    flex: 0 0 50%;
    width: 50%;
  }
  .profile-status .status-title h3 {
    font-size: 16px;
  }
  .profile-status .status-title p {
    font-size: 10px;
  }
  .my-activities .grid-activitie ul li {
    flex: 0 0 100%;
    width: 100%;
  }
  .package-cards-group {
    grid-template-columns: 100%;
  }
  .paying .pay-title .price {
    flex-direction: column;
  }
  .paying .pay-title .price .number,
  .paying .pay-title .price .max-pay {
    width: 100%;
  }
  .paying .pay-title .price .number {
    margin-bottom: 8px;
  }
  .paying .button-pay {
    margin-top: 15px;
  }
  .paying .button-pay .btn {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .profile-status .status-inner .item .icon img {
    height: 35px;
  }
  .profile-status .status-inner .item .name {
    font-size: 10px;
  }
  .profile-status .status-inner .item .button-group .btn {
    font-size: 10px;
    padding: 0.5rem 0.7rem;
    white-space: nowrap;
  }
  .center-banner {
    flex-direction: column;
  }
  .center-banner .banner-title {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .center-banner .btn {
    width: 100%;
  }
  .card-credit {
    width: 100%;
  }
  .card-credit .card-inner {
    background-size: cover;
  }
  .wallet {
    width: 100%;
    margin: 0 auto 1rem auto;
  }
}
@media (max-width: 350px) {
  .user-profile-section .grid-user-menu {
    width: 100%;
    right: -400px;
  }
  .user-profile-section .grid-user-menu .grid-inner {
    border-radius: 0;
  }
}
/*#endregion -------------- User Profile */
/*#region ----------------- LightBox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1220;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.lightbox .lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: 3px;
}
.lightbox .lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.lightbox .lightbox-close:hover, .lightbox .lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 1rem;
}

.lightbox-content,
#lightbox-caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
/*#endregion -------------- LightBox */
/*#region ----------------- Star Rating */
.star-rating-row {
  display: grid;
  grid-template-columns: 270px auto;
  align-items: center;
  margin: 10px 0;
}
.star-rating-row .label h6 {
  font-size: 13px;
  font-weight: 400;
  color: #212529;
  margin-bottom: 0;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.star-rating .input-star {
  display: none;
}
.star-rating .input-star:checked ~ .label-star:before {
  color: #f0c61f;
  transition: all 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 24 24' fill='%23e4bd35' %3E%3Cpath d='M12 17.27L18.18 21L16.54 13.97L22 9.24L14.81 8.62L12 2L9.19 8.62L2 9.24L7.45 13.97L5.82 21L12 17.27Z' /%3E%3C/svg%3E");
}
.star-rating .input-star.star-5:checked ~ .label-star:before {
  text-shadow: 0 0 20px #2fac66;
}
.star-rating .label-star {
  float: left;
  padding: 3px;
  width: 35px;
  height: 35px;
  transition: all 0.2s;
}
.star-rating .label-star::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 24 24' fill='%23aaa' %3E%3Cpath d='M12 15.39L8.24 17.66L9.23 13.38L5.91 10.5L10.29 10.13L12 6.09L13.71 10.13L18.09 10.5L14.77 13.38L15.76 17.66M22 9.24L14.81 8.63L12 2L9.19 8.63L2 9.24L7.45 13.97L5.82 21L12 17.27L18.18 21L16.54 13.97L22 9.24Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
}
.star-rating .label-star:hover {
  transform: scale(1.2);
}

@media (max-width: 575px) {
  .star-rating-row {
    grid-template-columns: 100%;
  }
}
/*#endregion -------------- Star Rating */
/*#region ----------------- Podcast */
.podcast-player {
  margin-top: 2rem;
  background-color: white;
  border: 1px solid #d5d6d8;
  border-radius: 15px;
  padding: 15px;
}

#player_body .player-content {
  position: relative;
  overflow: hidden;
  z-index: 50;
}
#player_body .player-content .details {
  display: grid;
  grid-template-columns: 120px auto;
  grid-template-areas: "playerCover playerInfo" "playerButtons playerButtons";
  width: 100%;
}
#player_body .player-content .cover {
  grid-area: playerCover;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
#player_body .player-content .cover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.4);
}
#player_body .player-content .cover .track-art {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}
#player_body .player-content .info {
  grid-area: playerInfo;
  position: relative;
  z-index: 10;
  padding: 5px 15px 0 0;
}
#player_body .player-content .info .track-name {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#player_body .player-content .info .track-artist {
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.player-status {
  direction: ltr;
  position: relative;
  z-index: 50;
  margin-top: 30px;
}
.player-status .seekslider #progress-bar {
  position: relative;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 20px;
  outline: none;
  background-color: transparent;
}
.player-status .seekslider #progress-bar::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.player-status .seekslider #progress-bar::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
}
.player-status .seekslider #progress-bar::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  box-sizing: content-box;
  border: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #2fac66;
  box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: -5px 0 0 0;
}
.player-status .seekslider #progress-bar::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
}
.player-status .seekslider #progress-bar::-moz-range-progress {
  background-color: #730a96;
}
.player-status .seekslider #progress-bar::-moz-focus-outer {
  border: 0;
}
.player-status .seekslider #progress-bar::-moz-range-thumb {
  box-sizing: content-box;
  border: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #2fac66;
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.player-status .seekslider #progress-bar:active::-webkit-slider-thumb {
  transform: scale(1.2);
  background: #730a96;
}
.player-status .seekslider #progress-bar:active::-moz-range-thumb {
  transform: scale(1.2);
  background: #730a96;
}
.player-status .seekslider #progress-bar:active::-ms-thumb {
  transform: scale(1.2);
  background: #730a96;
}
.player-status .seekslider .duration-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  color: #707275;
  margin-top: -5px;
}

.playList {
  background-color: rgba(112, 114, 117, 0.1);
  border-radius: 8px;
  margin-top: 10px;
}
.playList .list-inner {
  padding: 15px;
}
.playList .list-inner .list {
  min-height: 194px;
  max-height: 194px;
  overflow-y: auto;
  scrollbar-color: #909294 rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}
.playList .list-inner .list::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.1);
}
.playList .list-inner .list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #909294;
}
.playList .sound-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-left: 15px;
  padding: 8px;
  display: grid;
  grid-template-columns: 50px auto;
  align-items: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  cursor: pointer;
}
.playList .sound-item:last-child {
  margin-bottom: 0;
}
.playList .sound-item .play-btn {
  width: 40px;
  height: 40px;
}
.playList .sound-item .play-btn .btn-circle {
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  color: #730a96;
  border-radius: 50%;
  border: 2px solid #730a96;
  background-color: white;
}
.playList .sound-item .play-btn .btn-circle .fi {
  font-size: 18px;
  position: relative;
  top: 4px;
}
.playList .sound-item .cast-inner a {
  display: block;
}
.playList .sound-item .cast-inner .name {
  font-size: 13px;
  font-weight: 600;
  color: #707275;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.playList .sound-item .cast-inner .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
}
.playList .sound-item .cast-inner .info .speaker,
.playList .sound-item .cast-inner .info .time {
  font-size: 11px;
  font-weight: 500;
  color: #909294;
}
.playList .sound-item:hover {
  border-color: #730a96;
}
.playList .sound-item:hover .play-btn .btn-circle {
  background-color: #730a96;
  color: white;
}

.button-player-group {
  grid-area: playerButtons;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
}
.button-player-group #previous-song,
.button-player-group #next-song {
  width: 40px;
  height: 40px;
  background-color: rgba(47, 172, 102, 0.1);
  color: #909294;
  border: none;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.button-player-group #previous-song .fi,
.button-player-group #next-song .fi {
  font-size: 20px;
  position: relative;
  top: 4px;
}
.button-player-group #previous-song:hover,
.button-player-group #next-song:hover {
  background-color: #2fac66;
  color: white;
}
.button-player-group #play-pause {
  width: 55px;
  height: 55px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #730a96;
  color: white;
  border: none;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.button-player-group #play-pause:hover {
  background-color: #2fac66;
  color: white;
}
.button-player-group #play-pause::before {
  content: "\f24b";
  font-family: "uicons-regular-rounded";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 24px;
}
.button-player-group #play-pause.isPlaying::before {
  content: "\f23d";
}

@media (max-width: 768px) {
  #player_body .player-content .details {
    grid-template-columns: 90px auto;
    grid-template-areas: "playerCover playerInfo" "playerButtons playerButtons";
  }
  #player_body .player-content .cover {
    width: 90px;
    height: 90px;
  }
  #player_body .player-content .info {
    padding: 5px 15px 0 0;
  }
  #player_body .player-content .info .track-name {
    font-size: 14px;
  }
  #player_body .player-content .info .track-artist {
    font-size: 12px;
  }
  .player-status {
    margin-top: 1rem;
  }
}
@media (max-width: 575px) {
  #player_body .player-content .details {
    grid-template-columns: 80px auto;
    grid-template-areas: "playerCover playerInfo" "playerButtons playerButtons";
  }
  #player_body .player-content .cover {
    width: 80px;
    height: 80px;
  }
  #player_body .player-content .info {
    padding: 5px 10px 0 0;
  }
  #player_body .player-content .info .track-name {
    font-size: 12px;
    margin-bottom: 5px;
  }
  #player_body .player-content .info .track-artist {
    font-size: 10px;
  }
  .player-status {
    margin-top: 0.5rem;
  }
  .player-status .seekslider .duration-status {
    font-size: 10px;
  }
}
/*#endregion -------------- Podcast */
/*#region ----------------- Contact Us */
.contact-us-section {
  margin-bottom: 7rem;
  position: relative;
  top: -50px;
}
.contact-us-section .section-inner {
  display: grid;
  grid-template-columns: 50% 50%;
}
.contact-us-section .grid-contact {
  padding: 0 0 0 10px;
}
.contact-us-section .grid-form {
  padding: 0 10px 0 0;
}
.contact-us-section .contant-inner {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  padding: 30px;
  height: 100%;
}
.contact-us-section .contant-inner h6 {
  font-size: 16px;
  color: #212529;
  line-height: 27px;
}
.contact-us-section .contact-list {
  margin: 40px 0 0 0;
  text-align: right;
}
.contact-us-section .contact-list li {
  margin: 15px 0;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 15px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #2fac66;
  background: linear-gradient(90deg, white 0%, rgba(47, 72, 88, 0.1) 100%);
  border: 1px solid #e8ebed;
}
.contact-us-section .contact-list li a {
  color: #2fac66;
  -webkit-text-decoration: underline dashed 1px #2fac66 !important;
  text-decoration: underline dashed 1px #2fac66 !important;
}
.contact-us-section .contact-list li svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 48px;
  font-size: 48px;
  fill: #2fac66;
  transform: rotate(15deg);
}
.contact-us-section .contact-list li .fi {
  position: absolute;
  left: -3px;
  bottom: -34px;
  font-size: 48px;
  fill: #2fac66;
  transform: rotate(15deg);
  list-style: 0 !important;
  display: inline-block !important;
}
.contact-us-section .buttons-group {
  text-align: center;
  margin-top: 2rem;
}
.contact-us-section .map-location {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  padding: 30px;
  margin-top: 20px;
}
.contact-us-section .map-location iframe {
  width: 100%;
  height: 400px;
}

@media (max-width: 992px) {
  .contact-us-section .section-inner {
    grid-template-columns: 100%;
  }
}
/*#endregion -------------- Contact Us */
/*#region ----------------- Master Page */
.master-inner {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(112, 114, 117, 0.2);
  margin-bottom: 7rem;
  position: relative;
  top: -50px;
  padding: 40px;
}
.master-inner .description {
  margin-bottom: 2rem;
}
.master-inner .description .title {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  position: relative;
}
.master-inner .description .desc {
  font-size: 16px;
  font-weight: 300;
  color: #212529;
  margin: 1rem 0 0 0;
  line-height: 27px;
  text-align: justify;
  padding-right: 20px;
}
.master-inner .description .img-container {
  margin: 1rem 0;
}
.master-inner .description .img-container img {
  width: 100%;
  border-radius: 10px;
}
.master-inner hr {
  background-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .master-inner {
    padding: 2rem;
  }
  .master-inner .title {
    font-size: 18px;
  }
  .master-inner .title .fi {
    font-size: 20px;
  }
  .master-inner .desc {
    font-size: 14px;
    padding-right: 30px;
  }
  .master-inner .map-location {
    height: 300px;
  }
}
/*#endregion -------------- Master Page */
/*#region ----------------- Steps Wizard */
#modal-bookmark .modal-dialog {
  max-width: 900px;
}

.tabs-content .tab {
  display: none;
}
.tabs-content .tab-name {
  margin-top: 2rem;
  font-size: 14px;
  text-align: center;
  color: #212529;
}
.tabs-content .tab-inner {
  margin-top: 1rem;
}

.steps-progress {
  height: 30px;
  position: relative;
}

.steps {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.steps .step {
  flex: 0 0 33.33%;
  width: 33.33%;
  position: relative;
}
.steps .step.active::after {
  opacity: 1;
  background-color: #730a96;
}
.steps .step.active::before {
  background-color: #730a96;
}
.steps .step.finish {
  background-color: #04aa6d;
}
.steps .step::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  top: 11px;
  height: 2px;
  background-color: #e2e2e2;
  z-index: 1;
}
.steps .step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 25px;
  height: 25px;
  transform: translateX(50%);
  background-color: #e2e2e2;
  border: 6px solid white;
  border-radius: 50%;
  z-index: 20;
}
.steps .step:first-child {
  z-index: 10;
}
.steps .step:first-child::before {
  display: none;
}
.steps .step small {
  font-size: 12px;
  font-weight: 400;
  color: #707275;
  position: absolute;
  top: 25px;
  right: 50%;
  transform: translateX(50%);
}

.buttons-control {
  overflow: auto;
  text-align: left;
}
.buttons-control .btn-prev,
.buttons-control .btn-next {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: none;
}
.buttons-control .btn-prev .fi,
.buttons-control .btn-next .fi {
  font-size: 18px;
  position: relative;
  top: 5px;
}
.buttons-control .btn-next {
  color: white;
  background-color: #2fac66;
}
.buttons-control .btn-next .fi {
  margin-right: 10px;
}
.buttons-control .btn-next.finish .fi {
  margin-left: 10px;
  margin-right: 0;
}
.buttons-control .btn-prev {
  background-color: #e1e1e1;
  color: #707275;
}
.buttons-control .btn-prev .fi {
  margin-left: 10px;
}

.payment-preview {
  margin: 0;
  padding-right: 10px;
}
.payment-preview ul li {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.payment-preview ul li:last-child {
  margin-bottom: 0;
}
.payment-preview ul li .name {
  color: #707275;
}
.payment-preview ul li .desc {
  color: #2fac66;
  margin-right: 5px;
  font-size: 16px;
  font-weight: 800;
}
.payment-preview ul li small {
  color: #909294;
  font-size: 13px;
  font-weight: 400;
}

.class-groups .class-item {
  border: 1px solid #d5d6d8;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-top: 12px;
}
.class-groups .class-item .info {
  padding-right: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.class-groups .class-item .info .name h6 {
  font-size: 14px;
  color: #212529;
  margin-bottom: 6px;
}
.class-groups .class-item .info .name span {
  font-size: 13px;
  color: #707275;
}
.class-groups .class-item .info .price .toman {
  font-size: 15px;
  color: #212529;
  font-weight: 500;
}
.class-groups .class-item .info .price .jalase {
  margin-right: 2px;
  color: #707275;
  font-size: 13px;
}
.class-groups .class-item:hover ~ .checkmark-address {
  border: 2px solid #555;
}
.class-groups .class-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.class-groups .class-item input:checked ~ .checkmark-address {
  background-color: #3cabe3;
  border: 2px solid #3cabe3;
  transform: scale(1);
}
.class-groups .class-item input:checked ~ .checkmark-address::after {
  display: block;
  color: #fff;
}
.class-groups .class-item .checkmark-address {
  height: 22px;
  width: 22px;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid rgb(146, 146, 146);
  transition: all 0.2s ease;
  position: absolute;
  right: 13px;
  top: 14px;
}
.class-groups .class-item .checkmark-address:after {
  content: "\f160";
  font-family: "uicons-regular-rounded";
  font-weight: 900;
  top: -1px;
  left: 3px;
  color: #050505;
  font-size: 13px;
  position: absolute;
  display: none;
}

.weeks-content .week-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(112, 114, 117, 0.1);
  padding: 10px;
  border-radius: 10px;
}
.weeks-content .week-header .prev-week,
.weeks-content .week-header .next-week {
  background-color: transparent;
  border: 1px solid #2fac66;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #2fac66;
  padding: 5px 10px;
}
.weeks-content .week-header .prev-week .fi,
.weeks-content .week-header .next-week .fi {
  position: relative;
  top: 4px;
  font-size: 16px;
}
.weeks-content .week-header .prev-week .fi {
  margin-left: 5px;
}
.weeks-content .week-header .next-week .fi {
  margin-right: 5px;
}
.weeks-content .week-header .now-date {
  font-size: 14px;
  font-weight: 400;
  color: #212529;
  text-align: center;
}
.weeks-content .week-body {
  overflow-x: auto;
  width: 100%;
}
.weeks-content .weeks-name {
  margin-top: 10px;
}
.weeks-content .weeks-name ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.weeks-content .weeks-name ul li {
  flex: 0 0 14.28%;
  width: 14.28%;
  text-align: center;
  position: relative;
  padding-bottom: 5px;
}
.weeks-content .weeks-name ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 90%;
  height: 3px;
  transform: translateX(50%);
  background-color: #2fac66;
  border-radius: 5px;
}
.weeks-content .weeks-name ul li span {
  display: block;
}
.weeks-content .weeks-name ul li .name {
  font-size: 13px;
  font-weight: 500;
  color: #707275;
  margin-bottom: 5px;
}
.weeks-content .weeks-name ul li .day {
  font-size: 15px;
  font-weight: 500;
  color: #2fac66;
}
.weeks-content .list-of-times {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 1rem 0;
}
.weeks-content .list-of-times .times {
  flex: 0 0 14.28%;
  width: 14.28%;
  text-align: center;
  position: relative;
  padding: 0 1px;
}
.weeks-content .list-of-times .times .item {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin: 2px 0;
}
.weeks-content .list-of-times .times .form-check-input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.weeks-content .list-of-times .times .form-check-input:checked ~ .form-check-label {
  background-color: #730a96;
  color: white;
}
.weeks-content .list-of-times .times .form-check-label {
  border: 2px solid transparent;
  padding: 5px;
  width: 100%;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #212529;
}
.weeks-content .list-of-times .times .form-check-label:hover {
  border-color: #730a96;
}

.tooltip-inner {
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-family: IRANYEKAN;
}

.tooltip .tooltip-arrow::before {
  border-left-color: rgba(0, 0, 0, 0.7);
}

.preview-class {
  margin-top: 2.5rem;
}
.preview-class h6 {
  font-size: 13px;
  color: #2fac66;
}
.preview-class h6 .fi {
  margin-left: 10px;
  font-size: 18px;
  position: relative;
  top: 4px;
  line-height: 0;
  display: inline-block;
  color: #909294;
}
.preview-class ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-height: 154px;
  overflow-y: auto;
  scrollbar-color: #2fac66 #d5d6d8;
  scrollbar-width: thin;
  border: 1px solid #d5d6d8;
  padding: 5px;
  border-radius: 10px;
}
.preview-class ul::-webkit-scrollbar {
  border-radius: 10px;
  width: 5px;
  height: 8px;
  background-color: #d5d6d8;
}
.preview-class ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #2fac66;
}
.preview-class ul li {
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background-color: rgba(47, 172, 102, 0.1);
  border-radius: 30px;
  padding: 5px 10px 5px 5px;
  font-size: 12px;
  font-weight: 400;
  color: #212529;
}
.preview-class ul li .btn-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #909294;
  width: 20px;
  height: 20px;
  padding: 1px;
  border-radius: 50%;
  color: #909294;
}
.preview-class ul li .btn-delete .fi {
  position: relative;
  top: 3px;
  font-size: 16px;
}
.preview-class ul li .btn-delete:hover {
  background-color: #df0538;
  border-color: #df0538;
  color: white;
}
.preview-class ul li .name {
  padding-left: 10px;
}

.payment-method {
  margin-top: 1rem;
}
.payment-method .form-label {
  font-size: 13px;
  font-weight: 500;
  color: #2fac66;
}
.payment-method .form-label .fi {
  margin-left: 10px;
  font-size: 18px;
  position: relative;
  top: 4px;
  line-height: 0;
  display: inline-block;
  color: #909294;
}
.payment-method .form-control {
  border-radius: 0 10px 10px 0 !important;
}
.payment-method .form-control:focus, .payment-method .form-control:hover {
  box-shadow: none;
  border-color: #2fac66;
}
.payment-method .btn-secondary {
  padding: 0.6rem 1rem;
}

.calendar-section .calendar-column {
  border: 1px solid #d5d6d8;
  border-radius: 5px;
  padding: 10px 0 0 0;
}
.calendar-section .calendar-column .calendar-header {
  text-align: center;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1px solid #d5d6d8;
}
.calendar-section .calendar-column .calendar-header span {
  display: block;
}
.calendar-section .calendar-column .calendar-header .day {
  font-size: 12px;
  font-weight: 500;
  color: #707275;
}
.calendar-section .calendar-column .calendar-header .number {
  font-size: 16px;
  font-weight: 500;
  color: #2fac66;
}
.calendar-section .calendar-column .calendar-header .month {
  font-size: 12px;
  font-weight: 500;
  color: #707275;
  margin-bottom: 5px;
}
.calendar-section .calendar-column .calendar-body {
  margin-top: 0.5rem;
}
.calendar-section .add-bookmark {
  padding: 0px 5px 8px 5px;
  text-align: center;
  border-bottom: 1px solid #d5d6d8;
}
.calendar-section .btn-add-bookmark {
  padding: 2px 5px;
  width: 100%;
  border: none;
  background-color: #2fac66;
  color: white;
  border-radius: 5px;
  font-size: 13px;
}
.calendar-section .btn-add-bookmark .fi {
  font-size: 14px;
  position: relative;
  top: 3px;
  margin-left: 5px;
}

.column-row-item {
  padding: 5px;
}
.column-row-item:nth-child(odd) {
  background-color: #f2f2f2;
  border-radius: 5px;
}
.column-row-item.active {
  background-color: rgba(4, 170, 109, 0.2);
  border-radius: 5px;
}
.column-row-item .time {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #212529;
}
.column-row-item .action {
  text-align: left;
  margin-top: 5px;
}
.column-row-item .action .btn-delete {
  font-size: 12px;
  border: none;
  border-radius: 5px;
  padding: 2px;
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: rgba(223, 5, 56, 0.2);
  color: #df0538;
}
.column-row-item .action .btn-delete .fi {
  line-height: 0;
  display: inline-block;
  position: relative;
  top: 2px;
}
.column-row-item .action .btn-delete:hover {
  background-color: #df0538;
  color: white;
}

@media (max-width: 992px) {
  #modal-bookmark .modal-dialog {
    max-width: 95%;
  }
}
@media (max-width: 680px) {
  .weeks-content .weeks-name ul li {
    flex: 0 0 100px;
    width: 100px;
  }
  .weeks-content .weeks-name ul li::before {
    height: 2px;
  }
  .weeks-content .weeks-name ul li .name {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .weeks-content .weeks-name ul li .day {
    font-size: 13px;
  }
  .weeks-content .list-of-times .times {
    flex: 0 0 100px;
    width: 100px;
  }
  .weeks-content .list-of-times .times .form-check-label {
    font-size: 11px;
    padding: 5px 3px;
  }
}
@media (max-width: 575px) {
  .class-groups .class-item .info {
    flex-direction: column;
    align-items: flex-start;
  }
  .payment-preview {
    padding-right: 0;
    padding-bottom: 10px;
    flex: 0 0 100%;
    width: 100%;
    text-align: right;
  }
  .buttons-control {
    margin: 0;
    flex: 0 0 100%;
    width: 100%;
    text-align: left;
  }
  .weeks-content .week-header .prev-week,
  .weeks-content .week-header .next-week {
    padding: 4px;
    width: 34px;
    height: 34px;
  }
  .weeks-content .week-header .prev-week span,
  .weeks-content .week-header .next-week span {
    display: none;
  }
  .weeks-content .week-header .prev-week .fi,
  .weeks-content .week-header .next-week .fi {
    margin: 0;
  }
  .weeks-content .week-header .now-date {
    padding: 0 8px;
    font-size: 12px;
  }
}
/*#endregion -------------- Steps Wizard */
/*#region ----------------- Page Not Found */
.pagenot-found-section {
  padding-bottom: 2rem;
  background: linear-gradient(180deg, #f1f1f3, white);
}
.pagenot-found-section .sectin-inner {
  width: 500px;
  margin: 0 auto;
}
.pagenot-found-section .img-content img {
  width: 100%;
}
.pagenot-found-section .text-content {
  text-align: center;
  margin-top: 2rem;
}
.pagenot-found-section .text-content h1 {
  font-size: 22px;
  font-weight: 800;
  color: #212529;
}
.pagenot-found-section .search-input {
  position: relative;
  margin-top: 2rem;
}
.pagenot-found-section .search-input .input {
  width: 100%;
  height: 50px;
  border: 1px solid #d5d6d8;
  border-radius: 10px;
  padding: 5px 20px 5px 50px;
}
.pagenot-found-section .search-input .btn-search {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background-color: #730a96;
  color: white;
  padding: 13px;
}
.pagenot-found-section .button-group {
  margin-top: 2rem;
}
.pagenot-found-section .button-group .btn-primary {
  padding-left: 0.8rem;
}
.pagenot-found-section .button-group .btn-primary .fi {
  margin-right: 10px;
}

@media (max-width: 575px) {
  .pagenot-found-section .sectin-inner {
    width: 100%;
    padding: 0 1rem;
  }
  .pagenot-found-section .text-content h1 {
    font-size: 18px;
  }
}
/*#endregion -------------- Page Not Found */
/*#region ----------------- X - Catch Error */
.bred {
  border: 1px dashed red;
}

.bgreen {
  border: 1px dashed green;
}

.bblue {
  border: 1px dashed blue;
}

/*#endregion -------------- X - Catch Error */
.confirmation .card-class .card-body {
  grid-template-columns: 60px auto;
  align-items: center;
}
.confirmation .card-class .card-body .icon {
  width: 40px;
  height: 40px;
  background-color: #707275;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.confirmation .card-class .card-body .icon .fi {
  color: #fff;
  line-height: 0 !important;
  display: inline-block;
  font-size: 18px;
}
.confirmation .card-class .card-body .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.confirmation .card-class .card-body .info-right {
  display: flex;
  flex-direction: column;
}
.confirmation .card-class .card-body .info-right div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.confirmation .card-class .card-body .info-right div .title {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0;
}
.confirmation .card-class .card-body .info-right div .status {
  margin-bottom: 0;
  color: #909294;
  font-size: 12px;
  font-weight: 400;
}
.confirmation .card-class .card-body .info .Description {
  color: #909294;
  font-size: 12px;
  margin-bottom: 0;
}
.confirmation .card-class .card-body .info .btn {
  background-color: #2fac66;
  color: #fff;
  width: 100px;
  padding: 7px 12px;
}
.confirmation .card-class .card-certificate {
  background-color: #2fac66;
  color: #fff;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
  box-shadow: 0 8px 35px -7px #2fac66;
  padding: 38px;
  border-radius: 15px;
  position: relative;
}
.confirmation .card-class .card-certificate .Description {
  text-align: justify;
  font-size: 12px;
}
.confirmation .card-class .card-certificate .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.confirmation .card-class .card-certificate .time p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}
.confirmation .card-class .card-certificate .time span {
  font-size: 12px;
}
.confirmation .card-class .active .icon {
  background-color: #2fac66;
}
.confirmation .card-class .active .info-right div .status {
  color: #2fac66;
}
.confirmation .card-class .pending .icon {
  background-color: #f0c61f;
}
.confirmation .card-class .pending .info-right div .status {
  color: #f0c61f;
}
.confirmation .card-class-border {
  display: block;
  position: absolute;
  top: 20px;
  right: 35px;
  bottom: 50px;
  border-left: 2px dashed #909294;
  opacity: 40%;
  z-index: 1;
}

@media (max-width: 575px) {
  .confirmation .card-class .card-body {
    grid-template-columns: 30px auto !important;
    justify-items: normal !important;
  }
  .confirmation .card-class .card-body .info-right div .title {
    font-size: 12px;
    font-weight: 400;
    max-width: 137px;
  }
  .confirmation .card-class .card-body .info-right div .status {
    font-size: 10px;
    font-weight: 300;
    width: 80px;
  }
  .confirmation .card-class .card-body .info .Description {
    font-size: 10px;
    max-width: 137px;
    line-height: 20px;
  }
  .confirmation .card-class .card-body .info div .btn {
    width: 50px;
    padding: 5px 2px;
    font-size: 10px;
  }
  .confirmation .card-class .card-certificate {
    grid-template-columns: 100%;
  }
  .confirmation .card-class .card-certificate .text {
    order: 2;
  }
  .confirmation .card-class .card-certificate .text .Description {
    font-size: 12px;
  }
  .confirmation .card-class .card-certificate .image {
    order: 1;
  }
}
.confirmation-info .banner {
  width: 100%;
  aspect-ratio: 143/43;
  border-radius: 12px;
  margin-bottom: 40px;
}
.confirmation-info .card-class {
  margin-bottom: 40px;
}
.confirmation-info .card-class .introduction {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 8px;
}
.confirmation-info .card-class .introduction .video {
  aspect-ratio: 3/2;
  width: 100%;
  padding: 20px;
}
.confirmation-info .card-class .introduction .Description {
  text-align: justify;
}
.confirmation-info .card-class .rules {
  font-weight: 500;
}
.confirmation-info .card-class .price {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.confirmation-info .card-class .price div {
  display: flex;
  gap: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.confirmation-info .card-class .price div p {
  margin-bottom: 0;
}
.confirmation-info .card-class .price .btn {
  background-color: #2fac66;
  color: #fff;
  width: 100px;
  padding: 7px 12px;
}
.confirmation-info .card-class .checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}
.confirmation-info .features .option {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  justify-content: space-between;
  margin-bottom: 40px;
}
.confirmation-info .features .option-card:nth-child(2) {
  background-color: rgba(33, 37, 41, 0.2);
}
.confirmation-info .features .option-card:nth-child(2) .fi {
  color: #212529;
}
.confirmation-info .features .option-card:nth-child(3) {
  background-color: rgba(47, 172, 102, 0.2);
}
.confirmation-info .features .option-card:nth-child(3) .fi {
  color: #2fac66;
}
.confirmation-info .features .option-card {
  background-color: rgba(115, 10, 150, 0.2);
  box-shadow: 0 8px 35px -7px rgba(112, 144, 176, 0.4);
  border-radius: 12px;
  aspect-ratio: 2/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
}
.confirmation-info .features .option-card-title {
  font-size: 12px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 0;
}
.confirmation-info .features .option-card-description {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  color: #212529;
}
.confirmation-info .features .option-card .fi {
  color: #730a96;
  line-height: 0 !important;
  display: inline-block;
  font-size: 3em;
  margin: 25px 0;
}

@media (max-width: 575px) {
  .confirmation-info .card-class .introduction {
    grid-template-columns: 100%;
  }
  .confirmation-info .card-class .introduction .video {
    padding: 0px;
  }
  .confirmation-info .features .option {
    grid-template-columns: 100%;
    gap: 12px;
  }
}
.inputgroup .input:not(:-moz-placeholder-shown) {
  border-color: #730a96 !important;
}
.inputgroup .input:not(:placeholder-shown) {
  border-color: #730a96 !important;
}

#img {
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  aspect-ratio: 7/2;
  display: flex;
  border: 2px dashed rgb(115, 10, 150);
  background-color: rgba(115, 10, 150, 0.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#img i {
  font-size: 40px;
  color: rgb(115, 10, 150);
}
#img label {
  font-size: 11px;
}

@media (max-width: 575px) {
  .blog-filter .blog-list-category .list-inner {
    display: -webkit-box;
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    align-items: center;
    justify-content: center;
  }
  .blog-filter .blog-search .search-group {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100% !important;
    margin: 0 auto;
    border-radius: 50px;
  }
  .blog-page-content .grid-layout .grid-item.grid-bigImage .news-content .news-content-pic,
  .grid-item.grid-width .news-content .news-content-pic,
  .grid-item.grid-small-1 .news-content .news-content-pic,
  .grid-item .news-content .news-content-pic {
    height: 100% !important;
  }
  .blog-page-content .grid-layout .grid-item .news-content a {
    display: block;
    height: 100%;
    aspect-ratio: 2/2;
  }
  .card-class .card-body {
    grid-template-columns: 100% !important;
    justify-items: center;
  }
  .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
  }
  .profile-tab-content .nav-link {
    border-bottom: none !important;
  }
  /* Horizontal Scrollbar */
  ::-webkit-scrollbar {
    height: 2px;
  }
  /* Track for Horizontal Scrollbar */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 5px;
  }
  /* Handle for Horizontal Scrollbar */
  ::-webkit-scrollbar-thumb {
    background: #730a96;
    border-radius: 10px;
  }
  /* Handle on Hover for Horizontal Scrollbar */
  ::-webkit-scrollbar-thumb:hover {
    background: #730a96;
  }
}/*# sourceMappingURL=main.css.map */