/* :: PRELOADER :: */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--darkBlue);
	z-index: 999;
  }
  .preloader::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	height: 2px;
	background: linear-gradient(to right,
	#e00000,
	#fe9000,
	#fff020,
	#3edf4b,
	#3363ff,
	#b102b7,
	#e00000
	);
	animation: rainbow-move 12s infinite linear alternate;
  }
  @keyframes rainbow-move {
	100% {
	  background-position-x: 4000px;
	}
  }
  /* ----------------------------------- */
  
  /* :: THEME-NAVBAR :: */
  .theme-navbar {
	position: relative;
  }
  .light-theme .theme-navbar {
	background-color: #FFF;
	border-bottom: 1px solid var(--border);
  }
  
  /* notices-bar */
  .theme-navbar .notices-bar {
	background-color: #e00000;
  }
  .theme-navbar .notices-bar .content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 60px;
  }
  .theme-navbar .notices-bar .text {
	font-size: 14px;
	font-weight: bold;
	color: var(--darkBlue);
  }
  @media only screen and (max-width: 767.98px) {
	.theme-navbar .notices-bar {
	  display: none;
	}
  }
  
  /* action-btn */
  .theme-navbar .notices-bar .action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-left: 15px;
	background-color: #e00000;
	color: #ffffff;
	padding: 7px 14px;
	border-radius: 2px;
	white-space: nowrap;
	transition: all .15s ease;
  }
  .theme-navbar .notices-bar .action-btn:hover {
	background-color: #d83e3e;
  }
  
  /* close-btn */
  .theme-navbar .notices-bar .close-btn {
	position: absolute;
	right: 20px;
	cursor: pointer;
  }
  .theme-navbar .notices-bar .close-btn img {
	width: 12px;
  }
  .theme-navbar .notices-bar .close-btn:hover {
	opacity: .7;
  }
  
  /* nav-top */
  .theme-navbar .nav-top {
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
  }
  .light-theme .theme-navbar .nav-top {
	border-bottom: 1px solid var(--border);
  }
  @media only screen and (max-width: 767.98px) {
	.theme-navbar .nav-top {
	  padding: 15px 0 15px;
	}
  }
  
  /* menu-icon */
  .theme-navbar .nav-top .menu-icon {
	display: none;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-top .menu-icon {
	  display: block;
	  min-width: 24px;
	  width: 24px;
	  margin-right: 10px;
	  cursor: pointer;
	}
  }
  
  /* brand */
  .theme-navbar .nav-top .brand img {
	height: 34px;
  }
  @media only screen and (max-width: 991.98px) {
	.theme-navbar .nav-top .brand img {
	  height: 30px;
	}
  }
  
  /* options */
  .theme-navbar .options .c-link {
	display: flex;
	align-items: center;
	transition: all .15s ease;
  }
  .theme-navbar .options .c-link:not(:last-of-type) {
	margin-right: 30px;
  }
  .theme-navbar .options .c-link .icon {
	width: 24px;
	margin-right: 10px;
  }
  .theme-navbar .options .c-link .text {
	font-size: 12px;
	font-weight: bold;
	color: var(--darkBlue);
  }
  .dark-theme .theme-navbar .options .c-link .text {
	color: #fff;
  }
  .theme-navbar .options .c-link:hover .text {
	text-decoration: underline;
  }
  @media only screen and (max-width: 991.98px) {
	.theme-navbar .options .c-link {
	  display: none;
	}
  }
  
  /* buttons */
  .theme-navbar .buttons {
	margin-left: 20px;
  }
  .theme-navbar .buttons .btn {
	padding: 12px 20px;
	font-size: 14px;
	height: auto;
  }
  
  /* lang */
  .theme-navbar .lang {
	position: relative;
	margin-left: 20px;
	z-index: 97;
	user-select: none;
  }
  .theme-navbar .lang .current {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
	cursor: pointer;
	transition: all .15s ease;
  }
  .light-theme .theme-navbar .lang .current {
	color: var(--darkBlue);
  }
  .theme-navbar .lang .current:hover,
  .theme-navbar .lang.open .current {
	text-decoration: underline;
  }
  .theme-navbar .lang .current img {
	min-width: 10px;
	width: 10px;
	margin-left: 4px;
  }
  
  /* lang-menu */
  .theme-navbar .lang .lang-menu {
	display: flex;
	flex-wrap: wrap;
	min-width: 280px;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 42px;
	background-color: var(--semi-dark);
	border: 1px solid var(--semi-dark-2);
	border-radius: 8px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
	visibility: hidden;
	opacity: 0;
	transition: all .15s ease;
  }
  .light-theme .theme-navbar .lang .lang-menu {
	background-color: #ffffff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	border: 1px solid var(--border);
  }
  .theme-navbar .lang .lang-menu::before {
	position: absolute;
	content: '';
	right: 14px;
	top: -7px;
	width: 14px;
	height: 14px;
	border-top-right-radius: 2px;
	transform: rotate(-45deg);
	background-color: var(--semi-dark);
	border: 1px solid var(--semi-dark-2);
	border-color: var(--semi-dark-2) var(--semi-dark-2) transparent transparent;
  }
  .light-theme .theme-navbar .lang .lang-menu::before {
	background-color: #ffffff;
	border-color: var(--border) var(--border) transparent transparent;
  }
  .theme-navbar .lang.open .lang-menu {
	visibility: visible;
	opacity: 1;
  }
  
  /* lang-item */
  .theme-navbar .lang .lang-item {
	display: inline-flex;
	margin: 6px;
  }
  .theme-navbar .lang .lang-item .icon {
	width: 18px;
	margin-right: 6px;
  }
  .theme-navbar .lang .lang-item a {
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
	white-space: nowrap;
  }
  .theme-navbar .lang .lang-item:hover a,
  .theme-navbar .lang .lang-item.active a {
	color: #ffffff;
	text-decoration: underline;
  }
  .light-theme .theme-navbar .lang .lang-item:hover a,
  .light-theme .theme-navbar .lang .lang-item.active a {
	color: var(--darkBlue);
  }
  
  /* second-options */
  .theme-navbar .second-options .o-link {
	position: relative;
	margin-left: 16px;
  }
  .theme-navbar .second-options .icon {
	width: 24px;
	cursor: pointer;
  }
  
  /* user-dropdown-menu */
  .theme-navbar .second-options .user-dropdown-menu {
	position: absolute;
	display: none;
	top: 40px;
	right: -16px;
	background-color: var(--semi-dark);
	width: 300px;
	border: 1px solid rgba(255, 255, 255, .1);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
	padding: 20px 16px 24px;
	z-index: 99;
  }
  .light-theme .theme-navbar .second-options .user-dropdown-menu {
	background-color: #FFFFFF;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	border: 1px solid var(--border);
  }
  .theme-navbar .second-options .user-dropdown-menu::before {
	position: absolute;
	content: '';
	width: 14px;
	height: 14px;
	background-color: var(--semi-dark);
	border-width: 1px 1px 0 0;
	border: 1px solid rgba(255, 255, 255, .1);
	border-width: 1px 1px 0 0;
	top: -7px;
	right: 20px;
	transform: rotate(-45deg);
  }
  .light-theme .theme-navbar .second-options .user-dropdown-menu::before {
	background-color: #ffffff;
	border-color: var(--border);
  }
  .theme-navbar .second-options .open .user-dropdown-menu {
	display: block;
  }
  
  /* uddm-link-parent */
  .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:first-of-type) {
	padding-top: 16px;
  }
  .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:last-of-type) {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding-bottom: 16px;
  }
  .light-theme .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:last-of-type) {
	border-bottom: 1px solid var(--border);
  }
  .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .title-2 {
	font-family: var(--primary-font);
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 20px;
  }
  .light-theme .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .title-2 {
	color: var(--darkBlue);
  }
  .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .para-2 {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
	margin-bottom: 10px;
  }
  .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .uddm-link {
	color: var(--primary);
	font-size: 14px;
	font-weight: 500;
  }
  .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .uddm-link:hover {
	text-decoration: underline;
  }
  
  /* nav-bottom */
  .theme-navbar .nav-bottom {
	padding: 15px 0;
  }
  .theme-navbar .nav-bottom .info .item {
	display: flex;
	align-items: center;
  }
  .theme-navbar .nav-bottom .info .item:not(:last-of-type) {
	margin-right: 20px;
  }
  .theme-navbar .nav-bottom .info .item img {
	min-width: 14px;
	width: 14px;
	margin-right: 8px;
  }
  .theme-navbar .nav-bottom .info .item .text {
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
  }
  .light-theme .theme-navbar .nav-bottom .info .item .text {
	font-weight: bold;
	color: var(--darkBlue);
  }
  
  /* links */
  .theme-navbar .nav-bottom .links .link.grad1 > a {
	background: linear-gradient(
		  to right,
		  #fd004c 20%,
		  #fe9000 40%,
		  #b102b7 70%,
		  #3363ff 80%
	  );
	  -webkit-background-clip: text;
	  background-clip: text;
	  -webkit-text-fill-color: transparent;
	  text-fill-color: transparent;
	  background-size: 500% auto;
	  animation: textShine 5s ease-in-out infinite alternate;
  }
  @keyframes textShine {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
  }
  .theme-navbar .nav-bottom .links .link > a {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
  }
  .light-theme .theme-navbar .nav-bottom .links .link > a {
	color: var(--darkBlue);
  }
  .theme-navbar .nav-bottom .links .link:not(:last-of-type) {
	margin-right: 20px;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .links {
	  position: fixed;
	  top: 0;
	  left: -390px;
	  bottom: 0;
	  padding: 60px 0 50px;
	  background-color: var(--semi-dark);
	  transition: all .6s cubic-bezier(.77,0,.175,1);
	  overflow-y: auto;
	  overflow-x: hidden;
	  z-index: 98;
	}
	.light-theme .theme-navbar .nav-bottom .links {
	  background-color: #ffffff;
	}
	.theme-navbar .nav-bottom .links.open-links {
	  left: 0;
	  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2) !important;
	}
	.theme-navbar .nav-bottom .links::-webkit-scrollbar {
	  width: 2px;
	  height: 2px;
	}
	.theme-navbar .nav-bottom .links::-webkit-scrollbar-thumb {
	  width: 2px;
	  height: 2px;
	  background-color: rgba(255, 255, 255, 0.6);
	  border-radius: 20px;
	}
	.theme-navbar .nav-bottom .links .link > a {
	  padding: 10px 20px;
	  min-width: 380px;
	}
	.theme-navbar .nav-bottom .links .link:hover > a,
	.theme-navbar .nav-bottom .links .link.active > a,
	.theme-navbar .nav-bottom .links .link.open-dropdown-menu > a {
	  background-color: rgba(255, 255, 255, .1);
	  opacity: 1;
	}
	.light-theme .theme-navbar .nav-bottom .links .link:hover > a,
	.light-theme .theme-navbar .nav-bottom .links .link.active > a,
	.light-theme .theme-navbar .nav-bottom .links .link.open-dropdown-menu > a,
	.light-theme .theme-navbar .nav-bottom .links .link.open-mega-menu > a {
	  background-color: var(--light);
	}
	.theme-navbar .nav-bottom .links .link:not(:last-of-type) {
	  margin-right: unset;
	}
  }
  
  /* close-links-btn */
  .theme-navbar .nav-bottom .links .close-links-btn {
	display: none;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .links .close-links-btn {
	  display: block;
	  position: absolute;
	  top: 20px;
	  right: 20px;
	  cursor: pointer;
	}
	.theme-navbar .nav-bottom .links .close-links-btn img {
	  width: 18px;
	}
	.theme-navbar .nav-bottom .links .close-links-btn:hover {
	  opacity: .7;
	}
  }
  
  /* lines */
  .theme-navbar .nav-bottom .links .link .lines {
	position: relative;
	top: -1px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 22px;
	height: 12px;
	margin-right: 6px;
  }
  .theme-navbar .nav-bottom .links .link .lines span {
	display: block;
	width: 20px;
	height: 1px;
	background-color: #ffffff;
  }
  .light-theme .theme-navbar .nav-bottom .links .link .lines span {
	background-color: var(--darkBlue);
  }
  
  /* has-dropdown-menu */
  .theme-navbar .nav-bottom .links .link.has-dropdown-menu > a::after,
  .theme-navbar .nav-bottom .links .link.has-mega-menu > a::after {
	position: relative;
	content: '';
	width: 10px;
	height: 10px;
	background-image: url(../img/icons/navbar/down-chevron-dark.png);
	background-size: contain;
	background-position: center 2px;
	background-repeat: no-repeat;
	margin-left: 4px;
  }
  .light-theme .theme-navbar .nav-bottom .links .link.has-dropdown-menu > a::after,
  .light-theme .theme-navbar .nav-bottom .links .link.has-mega-menu > a::after {
	background-image: url(../img/icons/navbar/down-chevron-light.png);
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .links .link.has-dropdown-menu > a::after,
	.theme-navbar .nav-bottom .links .link.has-mega-menu > a::after {
	  margin-left: auto;
	  transform: rotate(-90deg);
	}
  }
  
  /* dropdown-menu */
  .theme-navbar .nav-bottom .links .link .dropdown-menu {
	position: absolute;
	top: 175px;
	background-color: #FFFFFF;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	min-width: 280px;
	padding: 26px 0 16px;
	border: 1px solid var(--border);
	border-radius: 4px;
	/*max-height: 550px;*/
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	z-index: 98;
  }
  .dark-theme .theme-navbar .nav-bottom .links .link .dropdown-menu {
	background-color: var(--semi-dark);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  }
  .theme-navbar .nav-bottom .links .link.open-dropdown-menu .dropdown-menu {
	visibility: visible;
	opacity: 1;
  }
  .theme-navbar .nav-bottom .links .link .dropdown-menu::-webkit-scrollbar {
	width: 2px;
  }
  .theme-navbar .nav-bottom .links .link .dropdown-menu::-webkit-scrollbar-thumb {
	background-color: var(--semi-dark-2);
	border-radius: 20px;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .links .link .dropdown-menu {
	  display: none;
	  position: relative;
	  top: 0 !important;
	  box-shadow: none !important;
	  opacity: 1;
	  background: rgba(0, 0, 0, .3);
	  border-bottom: 1px solid var(--border) !important;
	  border-radius: 0;
	}
	.light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu {
	  border: 0;
	  box-shadow: none;
	  background-color: #ffffff;
	}
	.theme-navbar .nav-bottom .links .link.open-dropdown-menu .dropdown-menu {
	  display: block;
	}
  }
  
  /* group-title */
  .theme-navbar .nav-bottom .links .link .dropdown-menu .group-title {
	font-size: 12px;
	font-weight: 600;
	padding: 0 19px;
	color: var(--gray);
	margin-bottom: 4px;
  }
  .light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu .group-title {
	opacity: .7;
  }
  .theme-navbar .nav-bottom .links .link .dropdown-menu .group-title:not(:first-of-type) {
	margin-top: 20px;
  }
  
  /* dm-link */
  .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link {
	position: relative;
	display: flex;
	align-items: center;
	padding: 5px 20px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
  }
  .light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link {
	color: var(--darkBlue);
  }
  .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link:hover {
	background-color: var(--semi-dark-2);
  }
  .light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link:hover {
	background-color: var(--light);
  }
  .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-soon::after {
	position: relative;
	content: 'Soon';
	font-size: 10px;
	color: var(--gold);
	background-color: rgba(255, 183, 48, 0.1);
	padding: 4px 8px;
	border-radius: 2px;
	margin-left: auto;
	width: 43px;
	text-align: center;
	text-transform: uppercase;
  }
  .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-new::after {
	position: relative;
	content: 'New';
	font-size: 10px;
	color: #15CD72;
	background-color: rgba(21, 205, 113, 0.1);
	padding: 4px 8px;
	border-radius: 2px;
	margin-left: auto;
	width: 43px;
	text-align: center;
	text-transform: uppercase;
  }
  
  /* mega-menu */
  .theme-navbar .nav-bottom .links .has-mega-menu .mega-menu {
	position: absolute;
	left: 0;
	top: 175px;
	right: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 98;
  }
  .theme-navbar .nav-bottom .links .has-mega-menu .content {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	padding: 30px 30px;
	overflow-y: auto;
	max-height: calc(100vh - 200px);
  }
  .dark-theme .theme-navbar .nav-bottom .links .has-mega-menu .content {
	background-color: var(--semi-dark);
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .links .has-mega-menu .mega-menu {
	  display: none;
	  position: relative;
	  top: 0 !important;
	  box-shadow: none;
	  opacity: 1;
	  background: rgba(0, 0, 0, .3);
	  max-width: 380px;
	}
	.theme-navbar .nav-bottom .links .has-mega-menu.open-mega-menu .mega-menu {
	  display: block;
	}
	.theme-navbar .nav-bottom .links .has-mega-menu .mega-menu .container-fluid {
	  padding: 0;
	}
	.theme-navbar .nav-bottom .links .has-mega-menu .content {
	  border-radius: 0;
	  padding: 15px;
	  box-shadow: none !important;
	  border-bottom: 1px solid var(--border);
	}
  }
  
  /* mm-col */
  .theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col {
	flex: 0 0 25%;
	padding: 0 10px;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col {
	  flex: 0 0 100%;
	}
	.theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col:not(:last-child) {
	  margin-bottom: 20px;
	}
  }
  
  
  /* open-mega-menu */
  .theme-navbar .nav-bottom .links .link.open-mega-menu .mega-menu {
	visibility: visible;
	opacity: 1;
  }
  
  /* scrollbar for mega menu */
  .theme-navbar .nav-bottom .links .has-mega-menu .content::-webkit-scrollbar {
	width: 2px;
  }
  .theme-navbar .nav-bottom .links .has-mega-menu .content::-webkit-scrollbar-thumb {
	background-color: var(--semi-dark-2);
	border-radius: 20px;
  }
  
  /* mm-title */
  .theme-navbar .nav-bottom .mm-title {
	font-size: 14px;
	font-family: var(--secondary-font);
	color: var(--darkGray);
	margin-bottom: 10px;
	text-transform: uppercase;
  }
  
  /* mm-list-item */
  .theme-navbar .nav-bottom .mm-list-item {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px 15px;
	border-radius: .75rem;
	transition: all .15s ease-in-out;
  }
  .theme-navbar .nav-bottom .mm-list-item:not(:last-child) {
	margin-bottom: 10px;
  }
  .theme-navbar .nav-bottom .mm-list-item:hover {
	background-color: var(--light);
  }
  .dark-theme .theme-navbar .nav-bottom .mm-list-item:hover {
	background-color: var(--semi-dark-2);
  }
  
  /* mm-item-link */
  .theme-navbar .nav-bottom .mm-list-item .mm-item-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
  }
  
  /* icon */
  .theme-navbar .nav-bottom .mm-list-item .icon {
	width: 40px;
	height: 40px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: .75rem;
  }
  .theme-navbar .nav-bottom .mm-list-item .icon img {
	width: 38px;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .mm-list-item .icon {
	  width: 36px;
	  height: 36px;
	}
	.theme-navbar .nav-bottom .mm-list-item .icon img {
	  width: 22px;
	}
  }
  
  /* info */
  .theme-navbar .nav-bottom .mm-list-item .name {
	font-size: 16px;
	font-weight: bold;
	color: var(--darkBlue);
	line-height: 1.3;
	padding-top: 4px;
  }
  .dark-theme .theme-navbar .nav-bottom .mm-list-item .name  {
	color: #fff;
  }
  .theme-navbar .nav-bottom .mm-list-item .text {
	color: var(--darkGray);
	font-size: 14px;
	font-weight: 500;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .nav-bottom .mm-list-item .name {
	  font-size: 14px;
	}
	.theme-navbar .nav-bottom .mm-list-item .text {
	  display: none;
	}
  }
  
  .theme-navbar .nav-bottom .links .has-mega-menu {}
  
  /* side-box */
  .theme-navbar .side-box {
	position: fixed;
	top: 20px;
	left: -590px;
	bottom: 20px;
	width: 570px;
	padding: 65px 30px 40px;
	background-color: var(--semi-dark);
	border-radius: 12px;
	transition: all .6s cubic-bezier(.77,0,.175,1);
	z-index: 98;
  }
  .light-theme .theme-navbar .side-box {
	background-color: rgba(225, 232, 248, 0.8);
	backdrop-filter: saturate(180%) blur(25px);
  }
  .theme-navbar .side-box.open-side-box  {
	left: 20px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  }
  .theme-navbar .side-box .mega-menu {
	height: 100%;
	border-radius: 8px;
	overflow-x: hidden;
	overflow-y: auto;
  }
  .theme-navbar .side-box .mega-menu::-webkit-scrollbar {
	width: 2px;
	height: 2px;
  }
  .theme-navbar .side-box .mega-menu::-webkit-scrollbar-thumb {
	width: 2px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 20px;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .side-box.open-side-box {
	  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
	}
  }
  @media only screen and (max-width: 767.98px) {
	.theme-navbar .side-box {
	  position: fixed;
	  top: 20px;
	  left: -100%;
	  width: calc(100% - 40px);
	  padding: 65px 20px 40px;
	}
  }
  
  /* f-nav */
  .theme-navbar .side-box .f-nav {
	position: relative;
	margin-bottom: 30px;
  }
  .theme-navbar .side-box .f-nav .f-nav-tab {
	position: relative;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	cursor: pointer;
	opacity: .7;
	transition: all .20s ease;
  }
  .light-theme .theme-navbar .side-box .f-nav .f-nav-tab {
	color: var(--darkBlue);
  }
  .theme-navbar .side-box .f-nav .f-nav-tab:not(:last-child) {
	margin-right: 15px;
  }
  .theme-navbar .side-box .f-nav .f-nav-tab.active {
	opacity: 1;
  }
  .theme-navbar .side-box .f-nav .f-nav-tab:not(.active):hover {
	opacity: 1;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .side-box .f-nav {
	  margin: -3px -3px 27px;
	}
	.theme-navbar .side-box .f-nav .f-nav-tab {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 6px 14px;
	  border-radius: 4px;
	  margin: 3px;
	}
	.theme-navbar .side-box .f-nav .f-nav-tab:not(:last-child) {
	  margin-right: unset;
	}
	.theme-navbar .side-box .f-nav .f-nav-tab.active {
	  background-color: rgba(255, 255, 255, 0.4);
	}
  }
  
  /* indicator */
  .theme-navbar .side-box .f-nav .indicator {
	position: absolute;
	height: 3px;
	background-color: var(--primary);
	top: calc(100% + 4px);
	border-radius: 20px;
	left: 0;
	transition: all .3s ease;
	z-index: 2;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-navbar .side-box .f-nav .indicator {
	  display: none;
	}
  }
  
  /* content */
  .theme-navbar .side-box .content .cate-title {
	font-size: 12px;
	color: var(--gray);
	font-weight: bold;
	margin-bottom: 15px;
  }
  .light-theme .theme-navbar .side-box .content .cate-title {
	color: var(--darkBlue);
  }
  .theme-navbar .side-box .f-area:not(:first-child) {
	display: none;
  }
  .theme-navbar .side-box .f-area .apps {
	position: relative;
	transition: all .15s ease;
  }
  
  /* boxes */
  .theme-navbar .side-box .apps .boxes {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: -5px;
	overflow-y: auto;
  }
  
  /* app-box */
  .theme-navbar .side-box .app-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 0 0 calc(25% - 10px);
	height: 100px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.1);
	transition: all .20s ease;
	margin: 5px;
  }
  .light-theme .theme-navbar .side-box .app-box {
	background-color: rgba(255, 255, 255, 0.6);
   }
  .theme-navbar .side-box .app-box:hover {
	background-color: rgba(255, 255, 255, .05);
  }
  .light-theme .theme-navbar .side-box .app-box:hover {
	background-color: rgba(255, 255, 255, 1);
  }
  .theme-navbar .side-box .app-box .frame {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 7px;
  }
  .theme-navbar .side-box .app-box .title {
	display: block;
	font-size: 12px;
	color: #ffffff;
  }
  .light-theme .theme-navbar .side-box .app-box .title {
	font-weight: 500;
	color: var(--darkBlue);
  }
  @media only screen and (max-width: 767.98px) {
	.theme-navbar .side-box .app-box {
	  flex: 0 0 calc(33.33% - 10px);
	  height: 80px;
	}
	.theme-navbar .side-box .app-box .frame {
	  width: 30px;
	  height: 30px;
	}
  }
  
  /* small-app-box */
  .theme-navbar .side-box .small-app-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 0 0 calc(20% - 10px);
	height: 95.50px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0);
	transition: all .15s ease;
	margin: 5px;
  }
  .theme-navbar .side-box .small-app-box:hover {
	background-color: rgba(255, 255, 255, .05);
  }
  .light-theme .theme-navbar .side-box .small-app-box:hover {
	background-color: rgba(255, 255, 255, 1);
  }
  .theme-navbar .side-box .small-app-box .frame {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 7px;
  }
  .theme-navbar .side-box .small-app-box .title {
	display: block;
	font-size: 12px;
	color: #ffffff;
  }
  .light-theme .theme-navbar .side-box .small-app-box .title {
	font-weight: 500;
	color: var(--darkBlue);
  }
  @media only screen and (max-width: 767.98px) {
	.theme-navbar .side-box .small-app-box {
	  flex: 0 0 calc(33.33% - 10px);
	}
  }
  
  /* items */
  .theme-navbar .side-box .items {
	display: flex;
	flex-wrap: wrap;
  }
  .theme-navbar .side-box .items .item {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex: 0 0 50%;
	padding: 15px 15px;
	border-radius: 6px;
	transition: all .15s ease;
  }
  .theme-navbar .side-box .items .item:hover {
	background-color: rgba(255, 255, 255, .05);
  }
  .light-theme .theme-navbar .side-box .items .item:hover {
	background-color: rgba(255, 255, 255, 1);
  }
  .theme-navbar .side-box .items .item .icon {
	min-width: 34px;
	width: 34px;
	margin-right: 15px;
	transition: all .20s cubic-bezier(.19,1,.22,1) 0s
  }
  @media only screen and (max-width: 767.98px) {
	.theme-navbar .side-box .items .item {
	  flex: 0 0 100%;
	}
  }
  
  /* item-con */
  .theme-navbar .side-box .item-con {
	display: block;
	width: 100%;
  }
  .theme-navbar .side-box .item-con .name {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.1;
  }
  .light-theme .theme-navbar .side-box .item-con .name {
	color: var(--darkBlue);
  }
  .theme-navbar .side-box .item-con .des {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
  }
  .light-theme .theme-navbar .side-box .item-con .des {
	color: var(--darkBlue);
	opacity: .7;
  }
  
  /* close-side-box-btn */
  .theme-navbar .side-box .close-side-box-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
  }
  .light-theme .theme-navbar .side-box .close-side-box-btn {
	background-color: rgba(255, 255, 255, .5);
  }
  .theme-navbar .side-box .close-side-box-btn img {
	width: 18px;
  }
  .theme-navbar .side-box .close-side-box-btn:hover {
	background-color: rgba(255, 255, 255, .2);
  }
  .light-theme .theme-navbar .side-box .close-side-box-btn:hover {
	background-color: rgba(255, 255, 255, 1);
  }
  
  /* side-box-btn */
  .theme-navbar .nav-bottom .side-box-btn {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: bold;
	color: #ffffff;
	margin-left: 20px;
	cursor: pointer;
	transition: all .15s ease;
  }
  .light-theme .theme-navbar .nav-bottom .side-box-btn {
	color: var(--darkBlue);
  }
  .theme-navbar .nav-bottom .side-box-btn .lines {
	position: relative;
	top: -1px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 22px;
	height: 12px;
	margin-right: 6px;
  }
  .theme-navbar .nav-bottom .side-box-btn .lines span {
	display: block;
	width: 20px;
	height: 1px;
	background-color: #ffffff;
  }
  .light-theme .theme-navbar .nav-bottom .side-box-btn .lines span {
	background-color: var(--darkBlue);
  }
  /* ----------------------------------- */
  
  /* :: OPTIONS :: */
  
  /* theme-settings-btn */
  .theme-settings-btn {
	position: fixed;
	top: 180px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border-color: transparent;
	transition: all .15s ease;
	z-index: 96;
  }
  .theme-settings-btn img {
	width: 22px;
	z-index: 2;
  }
  
  /* button background */
  .theme-settings-btn::before {
	position: absolute;
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--semi-dark);
  }
  .theme-settings-btn::after {
	position: absolute;
	content: '';
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: conic-gradient(
	  #fd004c,
	  #fe9000,
	  #fff020,
	  #3edf4b,
	  #3363ff,
	  #b102b7,
	  #fd004c
	);
	animation: spin 1.5s infinite linear;
	border-radius: 50%;
	transition: all .15s ease;
	z-index: -1;
  }
  
  /* button hover effect */
  .theme-settings-btn:hover {
	transform: scale(1.05);
  }
  @media only screen and (max-width: 767.98px) {
	.theme-settings-btn {
	  top: 130px;
	}
  }
  
  /* theme-settings */
  .theme-settings {
	position: fixed;
	top: 0;
	right: -380px;
	bottom: 0;
	width: 360px;
	height: 100vh;
	padding: 30px 20px;
	background-color: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.2) -2px 2px 8px 0px;
	overflow-y: auto;
	user-select: none;
	transition: all .6s cubic-bezier(.77,0,.175,1);
	z-index: 98;
  }
  .theme-settings.open {
	right: 0;
  }
  
  /* title-1 */
  .theme-settings .title-1 {
	font-size: 18px;
	font-family: var(--primary-font);
	font-weight: 700;
	color: var(--darkBlue);
	padding: 0 0 30px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  
  /* close-btn */
  .theme-settings .close-btn {
	position: absolute;
	top: 34px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	transition: all .15s ease-out;
	cursor: pointer;
  }
  .theme-settings .close-btn img {
	width: 12px;
	transition: all .15s ease-out;
  }
  .theme-settings .close-btn:hover {
	background-color: var(--darkBlue);
  }
  .theme-settings .close-btn:hover img {
	filter: invert(1);
  }
  
  /* section */
  .theme-settings .section {
	padding: 20px 0 30px;
  }
  .theme-settings .section:not(:last-of-type) {
	border-bottom: 1px solid var(--border);
  }
  .theme-settings .section:last-of-type {
	padding-bottom: 0;
  }
  .theme-settings .section-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--darkBlue);
	margin-bottom: 20px;
  }
  
  /* themes */
  .theme-settings .themes {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
  }
  .theme-settings .themes .theme-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-right: 40px;
	cursor: pointer;
  }
  .theme-settings .themes .theme-btn .color {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #f0f1f2;
	margin-right: 10px;
  }
  .theme-settings .themes .theme-btn .color::before {
	position: absolute;
	content: '';
	min-width: 30px;
	width: 30px;
	height: 30px;
	background: conic-gradient(
	  #fd004c,
	  #fe9000,
	  #fff020,
	  #3edf4b,
	  #3363ff,
	  #b102b7,
	  #fd004c
	);
	animation: spin 1.5s infinite linear;
	border-radius: 50%;
	transition: all .15s ease;
	z-index: -1;
  }
  .theme-settings .themes .theme-btn.dark-theme .color {
	background-color: var(--darkBlue);
  }
  .theme-settings .themes .theme-btn .name {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkBlue);
  }
  @keyframes spin {
	100% {
	  transform: rotate(360deg);
	}
  }
  
  /* active-theme */
  .theme-settings .themes .theme-btn.active-theme .color::before {
	min-width: 40px;
	width: 40px;
	height: 40px;
  }
  .theme-settings .themes .theme-btn.active-theme .color::after {
	position: absolute;
	content: '';
	width: 14px;
	height: 14px;
	background-image: url(/assets/img/icons/options/check.png);
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 2;
  }
  .theme-settings .themes .theme-btn.light-theme.active-theme .color::after {
	filter: invert(1);
  }
  
  /* feature-option */
  .theme-settings .feature-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
  }
  .theme-settings .feature-option:nth-child(2) {
	padding-top: 0;
  }
  .theme-settings .feature-option:last-of-type {
	padding-bottom: 0;
  }
  .theme-settings .feature-option .text {
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	color: var(--darkBlue);
  }
  .theme-settings .feature-option .switch-btn {
	position: relative;
	width: 40px;
	height: 20px;
	background-color: #d6d6d6;
	border-radius: 50px;
	cursor: not-allowed;
	transition: all .15s ease-out;
	opacity: .6;
  }
  .theme-settings .feature-option .switch-btn:hover {
	background-color: #c7c7c7;
  }
  .theme-settings .feature-option .switch-btn::before {
	position: absolute;
	content: '';
	top: 3px;
	left: 3px;
	width: 14px;
	height: 14px;
	background-color: #ffffff;
	border-radius: 50%;
	transition: all .15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .theme-settings .feature-option .switch-btn:active::before {
	transform: scale(.9);
  }
  
  /* option-active */
  .theme-settings .feature-option.option-active .switch-btn {
	background-color: var(--primary);
  }
  .theme-settings .feature-option.option-active .switch-btn::before {
	left: 23px;
  }
  
  /* q-link */
  .theme-settings .q-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
  }
  .theme-settings .q-link:nth-child(2) {
	padding-top: 0;
  }
  .theme-settings .q-link:last-of-type {
	padding-bottom: 0;
  }
  .theme-settings .q-link a {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkBlue);
  }
  .theme-settings .q-link a:hover {
	text-decoration: underline;
  }
  
  /* copyright-text */
  .theme-settings .copyright-text {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-gray);
  }
  /* ----------------------------------- */
  
  /* SECTION HEAD */
  .se-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 75px;
  }
  .se-head .se-title-1 {
	font-size: 16px;
	color: var(--primary);
	font-family: var(--third-font);
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
  }
  .se-head .se-title-2 {
	font-size: 42px;
	font-weight: 700;
	color: var(--darkBlue);
	line-height: 1.2;
	margin-bottom: 25px;
  }
  .dark-theme .se-head .se-title-2 {
	color: #fff;
  }
  .se-head .se-para {
	font-size: 16px;
	color: var(--darkGray);
  }
  
  @media only screen and (max-width: 1199.98px) {
	.se-head .se-title-2 {
	  font-size: 32px;
	}
  }
  @media only screen and (max-width: 767.98px) {
	.se-head {
	  margin: 0 auto 45px;
	}
	.se-head .se-title-2 {
	  font-size: 26px;
	}
  }
  
  /* game-se-head */
  .se-head.game-se-head .se-title-1 {
	font-family: var(--g1-font);
	color: var(--gold);
  }
  .se-head.game-se-head .se-title-2 {
	font-family: var(--g1-font);
	text-transform: uppercase;
  }
  .se-head.game-se-head .se-para {
	font-size: 24px;
	font-family: var(--g2-font);
	font-weight: 500;
	color: var(--darkGray);
	line-height: 1.4;
  }
  
  .light-theme .se-head .se-title-2 {
	color: var(--darkBlue);
  }
  @media only screen and (max-width: 767.98px) {
	.se-head.game-se-head .se-para {
	  font-size: 20px;
	}
  }
  /* ----------------------------------- */
  
  /* :: FAQs :: */
  
  /* category */
  @media only screen and (max-width: 1199px) {
	.faqs .category {
	  display: flex;
	  justify-content: center;
	  flex-wrap: wrap;
	  margin: -8px;
	}
  }
  
  /* item */
  .faqs .category .item {
	display: flex;
	align-items: flex-start;
	background-color: var(--semi-dark);
	padding: 25px 25px 25px 25px;
	border: 1px solid var(--semi-dark);
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
	transition: all .20s ease;
  }
  .light-theme .faqs .category .item {
	background-color: #fff;
	border-color: var(--border);
	box-shadow: none;
  }
  .faqs .category .item:not(:last-child) {
	margin-bottom: 15px;
  }
  .faqs .category .item:hover:not(.active) {
	background-color: var(--semi-dark-2);
	border-color: var(--semi-dark-2);
  }
  .light-theme .faqs .category .item:hover:not(.active) {
	background-color: #fff;
	border-color: var(--border);
  }
  .faqs .category .item.active {
	background-color: var(--semi-dark-2);
	border: 1px solid rgba(255, 255, 255, .1);
  }
  .light-theme .faqs .category .item.active {
	background-color: #fff;
	border-color: var(--gray);
  }
  
  .faqs .category .item .icon {
	min-width: 36px;
	width: 36px;
	margin-right: 20px;
  }
  .faqs .category .item .item-title {
	color: #FFFFFF;
	font-size: 16px;
	font-family: var(--secondary-font);
  }
  .light-theme .faqs .category .item .item-title {
	color: var(--darkBlue);
  }
  .faqs .category .item .item-des {
	font-size: 14px;
	color: var(--darkGray);
  }
  @media only screen and (max-width: 1199px) {
	.faqs .category .item {
	  align-items: center;
	  width: calc(33.333% - 16px);
	  margin: 7px;
	}
	.faqs .category .item:not(:last-child) {
	  margin-bottom: 8px;
	}
	.faqs .category .item .icon {
	  min-width: 24px;
	  width: 24px;
	  margin-right: 20px;
	}
	.faqs .category .item .item-title {
	  margin-bottom: 0;
	}
	.faqs .category .item .item-des {
	  display: none;
	}
  }
  @media only screen and (max-width: 991px) {
	.faqs .category .item {
	  width: calc(50% - 16px);
	}
  }
  @media only screen and (max-width: 767.98px) {
	.faqs .category .item {
	  width: 100%;
	}
  }
  
  /* box */
  .faqs .box {
	background-color: var(--semi-dark);
	padding: 60px 50px 50px;
	border-radius: 8px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  }
  .light-theme .faqs .box {
	background-color: #fff;
	box-shadow: none;
	border: 1px solid var(--border);
  }
  .faqs .box:not(:first-child) {
	display: none;
  }
  @media only screen and (max-width: 767.98px) {
	.faqs .box {
	  padding: 40px 30px 30px;
	}
  }
  
  /* box-head */
  .faqs .box .box-head {
	display: flex;
	align-items: flex-start;
  }
  .faqs .box .box-head .icon {
	min-width: 36px;
	width: 36px;
	margin-right: 20px;
  }
  .faqs .box .box-head .box-title {
	color: #FFFFFF;
	font-size: 20px;
	font-family: var(--secondary-font);
	font-weight: bold;
  }
  .light-theme .faqs .box .box-head .box-title {
	color: var(--darkBlue);
  }
  .faqs .box .box-head .box-des {
	font-size: 16px;
	color: var(--darkGray);
  }
  @media only screen and (max-width: 767.98px) {
	.faqs .box .box-head {
	  flex-direction: column;
	}
	.faqs .box .box-head .icon {
	  margin-right: unset;
	  margin-bottom: 20px;
	}
  }
  
  /* box-body */
  .faqs .box .box-body {
	padding: 40px 56px 0;
  }
  @media only screen and (max-width: 767.98px) {
	.faqs .box .box-body {
	  padding: 40px 0 0;
	}
  }
  
  /* q */
  .faqs .box .q:not(:last-child) {
	border-bottom: 1px solid var(--border);
  }
  
  /* q-h */
  .faqs .box .q .q-h {
	padding: 20px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	cursor: pointer;
  }
  
  /* text */
  .faqs .box .q .q-h .text {
	font-size: 16px;
	font-family: var(--secondary-font);
	font-weight: bold;
	color: #FFFFFF;
  }
  .light-theme .faqs .box .q .q-h .text {
	color: var(--darkBlue);
  }
  @media only screen and (max-width: 767.98px) {
	.faqs .box .q .q-h .text {
	  font-size: 14px;
	}
  }
  
  /* plus */
  .faqs .box .q .q-h .plus {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	width: 22px;
	min-height: 22px;
	height: 22px;
	border: 2px solid var(--darkGray);
	border-radius: 50%;
	margin-left: 30px;
  }
  .faqs .box .q .q-h .plus span {
	position: absolute;
	display: block;
	width: 10px;
	height: 2px;
	background-color: var(--darkGray);
	transition: all .15s ease-in-out;
  }
  .faqs .box .q .q-h .plus span:nth-child(1) {
	transform: rotate(90deg);
  }
  .faqs .box .q.open .q-h .plus span:nth-child(1) {
	transform: rotate(0deg);
  }
  
  /* q-b */
  .faqs .box .q .q-b {
	padding: 10px 0 30px 0;
	display: none;
  }
  .faqs .box .q .q-b p {
	font-size: 16px;
	color: var(--darkGray);
  }
  .faqs .box .q .q-b p:not(:last-child) {
	margin-bottom: 10px;
  }
  .faqs .box .q .q-b a {
	color: var(--primary);
  }
  .faqs .box .q .q-b a:hover {
	text-decoration: underline;
  }
  @media only screen and (max-width: 767.98px) {
	.faqs .box .q .q-b p {
	  font-size: 14px;
	}
  }
  
  /* wrapper */
  .faqs .wrapper {
	padding: 100px 60px 60px;
	background-color: var(--semi-dark);
	border-radius: 8px;
  }
  .light-theme .faqs .wrapper {
	background-color: #fff;
  }
  .faqs .wrapper .title-3 {
	font-size: 36px;
	color: #FFFFFF;
	font-weight: 600;
  }
  .light-theme .faqs .wrapper .title-3 {
	color: var(--darkBlue);
  }
  .faqs .wrapper .para-3 {
	font-size: 17px;
	color: var(--darkGray);
	max-width: 730px;
  }
  /* ----------------------------------- */
  
  /* :: FOOTER :: */
  .theme-footer {
	position: relative;
	background-color: #0B0C1B;
  }
  .theme-footer::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(to right,
	#fd004c,
	#fe9000,
	#fff020,
	#3edf4b,
	#3363ff,
	#b102b7,
	#fd004c
	);
	animation: rainbow-move 20s infinite linear alternate;
  }
  @keyframes rainbow-move {
	100% {
	  background-position-x: 4000px;
	}
  }
  
  /* footer-top */
  .theme-footer .footer-top {
	padding: 60px 0 20px;
  }
  
  /* list-group */
  .theme-footer .list-group {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  }
  
  /* footer-list */
  .theme-footer .footer-list {
	padding-bottom: 4vh;
  }
  .theme-footer .footer-list .list-title {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
  }
  .theme-footer .footer-list .list-link:nth-child(2) {
	margin-top: 20px;
  }
  .theme-footer .footer-list .list-link:not(:last-of-type) {
	margin-bottom: 12px;
  }
  .theme-footer .footer-list .list-link > a {
	font-size: 14px;
	font-weight: 400;
	color: var(--gray);
  }
  .theme-footer .footer-list .list-link > a:hover {
	text-decoration: underline;
	color: #fff;
  }
  @media only screen and (max-width: 1199.98px) {
	.theme-footer .list-group {
	  justify-content: flex-start;
	}
	.theme-footer .footer-list {
	  min-width: 25%;
	}
  }
  @media only screen and (max-width: 991.98px) {
	.theme-footer .footer-list {
	  min-width: 33.33%;
	}
  }
  @media only screen and (max-width: 767.98px) {
	.theme-footer .footer-list {
	  min-width: 100%;
	}
	.theme-footer .footer-list .list-title::before,
	.theme-footer .footer-list .list-title::after {
	  position: absolute;
	  content: '';
	  right: 0;
	  top: 50%;
	  transform: translateY(-50%);
	  background-color: #ffffff;
	}
	.theme-footer .footer-list .list-title::before {
	  width: 10px;
	  height: 2px;
	}
	.theme-footer .footer-list .list-title::after {
	  height: 10px;
	  width: 2px;
	  right: 4px;
	}
	.theme-footer .footer-list.open-list .list-title::after {
	  display: none;
	}
	.theme-footer .footer-list .list-link {
	  display: none;
	}
	.theme-footer .footer-list.open-list .list-link {
	  display: block;
	}
  }
  
  /* reg-bar */
  .theme-footer .reg-bar {
	padding: 30px 40px;
	background-color: #2C2891;
	background-image: url(/assets/img/temps/footer/shape.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 12px;
  }
  .theme-footer .reg-bar .title-4 {
	font-size: 26px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 15px;
  }
  .theme-footer .reg-bar .para-2 {
	font-size: 16px;
	font-weight: 500;
	color: var(--gray);
  }
  @media only screen and (max-width: 767.98px) {
	.theme-footer .reg-bar .title-4 {
	  font-size: 22px;
	}
	.theme-footer .reg-bar .para-2 {
	  font-size: 14px;
	}
  }
  
  /* footer-bottom */
  .theme-footer .footer-bottom {
	padding: 60px 0;
  }
  
  /* content */
  @media only screen and (max-width: 991.98px) {
	.theme-footer .footer-bottom .content {
	  flex-wrap: wrap;
	}
  }
  
  /* logo */
  .theme-footer .footer-bottom .logo {
	margin-right: 40px;
  }
  .theme-footer .footer-bottom .logo img {
	min-width: 120px;
	width: 120px;
  }
  
  /* links */
  .theme-footer .footer-bottom .links {
	margin-bottom: 4px;
  }
  .theme-footer .footer-bottom .links li {
	position: relative;
  }
  .theme-footer .footer-bottom .links li:not(:last-of-type) {
	margin-right: 20px;
  }
  .theme-footer .footer-bottom .links li:not(:last-of-type)::after {
	position: absolute;
	content: '';
	right: -11px;
	top: 3px;
	bottom: 3px;
	width: 1px;
	background-color: rgba(255, 255, 255, .3);
  }
  .theme-footer .footer-bottom .links li a {
	font-size: 13px;
	font-weight: 500;
	color: #ffffff;
  }
  .theme-footer .footer-bottom .links li a:hover {
	text-decoration: underline;
  }
  
  /* para-3 */
  .theme-footer .footer-bottom .para-3 {
	font-size: 13px;
	font-weight: 500;
	color: var(--gray);
  }
  .theme-footer .footer-bottom .para-3 a {
	color: #ffffff;
	font-weight: 500;
  }
  .theme-footer .footer-bottom .para-3 a:hover {
	text-decoration: underline;
  }
  
  /* social-list */
  .theme-footer .footer-bottom .social-list li:not(:last-of-type) {
	margin-right: 10px;
  }
  .theme-footer .footer-bottom .social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
  }
  .theme-footer .footer-bottom .social-list a:hover {
	opacity: .7;
  }
  .theme-footer .footer-bottom .social-list a img {
	filter: invert(1);
	min-width: 28px;
	width: 28px;
  }
  /* ----------------------------------- */
  
  .current {
	  background: linear-gradient(
		  to right,
		  #fd004c 20%,
		  #fe9000 40%,
		  #b102b7 70%,
		  #3363ff 80%
	  );
	  -webkit-background-clip: text;
	  background-clip: text;
	  -webkit-text-fill-color: transparent;
	  text-fill-color: transparent;
	  background-size: 500% auto;
	  animation: textShine 5s ease-in-out infinite alternate;
  }