@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --mg-font-primary: "Inter", sans-serif;
  --mg-bg-color: #202020;
  --mg-text-color: #ffffff;
  --mg-primary-color: #d81c1c;
  --mg-primary-dark-blue: #15171e;
  --mg-blue: #0074e0;
  --mg-blue-hover: #004789;
  --mg-black: #0d0c0c;
  --mg-yellow: #ecba23;
  --mg-green: #4ade80;
}

body {
  font-family: var(--mg-font-primary);
  font-size: 16px;
  color: var(--mg-text-color) !important;
  font-weight: 400;
  background-color: var(--mg-bg-color) !important;
}
/*
|------------------------------------------------------------------
|  main
|------------------------------------------------------------------
*/
a {
  text-decoration: none;
  color: var(--mg-text-color);
}
section {
  padding: 40px 0;
}
section.top {
  padding-top: 80px;
}
section.bottom {
  padding-bottom: 80px;
}
.maintitle {
  font-size: 36px;
  line-height: 1;
  position: relative;
  font-weight: 800;
  letter-spacing: 0%;
  margin-bottom: 30px;
  text-transform: uppercase;
  background-image: linear-gradient(45deg, #ff6619, #f8334e 100%);
  background-image: -webkit-linear-gradient(45deg, #ff6619, #f8334e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.bg-dark-blue {
  background: var(--mg-primary-dark-blue);
}
.bg-black {
  background: var(--mg-black);
}
.btn-primary {
  background-color: var(--mg-primary-color);
  border-color: var(--mg-primary-color);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: right 100ms ease-in;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--mg-primary-color) !important;
  border-color: var(--mg-primary-color) !important;
  color: #fff !important;
}
.btn-primary:hover::before {
  right: 0;
}
.text-primary {
  color: var(--mg-primary-color) !important;
}
.text-yellow {
  color: var(--mg-yellow) !important;
}
.text-green {
  color: var(--mg-green) !important;
}
/*
|------------------------------------------------------------------
|  header
|------------------------------------------------------------------
*/
header {
  background: #23252b;
  padding: 10px 0;
}
.mobile_menu_button {
  font-size: 26px;
  display: none;
}
.mobile_menu_button a {
  color: #d9d9d9;
  transition: all 300ms ease-in;
}
.mobile_menu_button a:hover {
  color: var(--mg-primary-color);
}
.menu_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu_logo .logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 24px;
}
.menu_logo .logo img {
  height: 60px;
  width: auto;
}
.menu_logo .menu {
  display: flex;
  gap: 50px;
  align-items: center;
}
.menu_logo .mainmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
  font-weight: 400;
  font-size: 18px;
}
.menu_logo .mainmenu a,
.menu_logo .buttons a,
.menu_logo .buttons button {
  font-size: 20px;
  font-weight: 600;
  transition: color 300ms ease-in;
  color: #fff;
  text-decoration: none;
}
.menu_logo .buttons a:hover,
.menu_logo .mainmenu a:hover,
.menu_logo .buttons button:hover {
  color: var(--mg-primary-color);
}
.menu_logo .mobile_menu {
  display: none;
}
.user_btn {
  background: none;
  border: none;
}
.user_menu {
  background-color: var(--mg-bg-color);
  padding: 0 10px;
}
.clientmenu {
  min-width: 200px;
}
.clientmenu a.item {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  background-color: transparent;
  font-weight: 400;
}
.clientmenu a.item + a.item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5px;
}
.mobile_menu .btn-yellow {
  background-color: var(--mg-yellow);
  color: var(--mg-black);
}
/*
|------------------------------------------------------------------
|  mainslider
|------------------------------------------------------------------
*/
#mainslider {
  position: relative;
}
#mainslider .item {
  height: 400px;
  min-width: 100vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: end;
  position: relative;
  padding-bottom: 30px;
}
#mainslider .item .content {
  width: 100%;
  position: relative;
  z-index: 2;
}
#mainslider .item .content h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  line-height: 123.256%;
  margin-bottom: 2rem;
  width: 50%;
}
#mainslider .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  text-align: center;
}
#mainslider .owl-dots .owl-dot {
  background-color: #fff;
  width: 30px;
  height: 8px;
  margin: 0 5px;
  border-radius: 3px;
  transition: width 300ms ease-in;
}
#mainslider .owl-dots .owl-dot.active {
  background-color: var(--mg-primary-color);
  width: 60px;
}
/*
|------------------------------------------------------------------
|  category_item
|------------------------------------------------------------------
*/
.category_item {
  position: relative;
  background-color: var(--mg-bg-color);
  border-radius: 10px;
  padding: 15px 15px 30px 15px;
  transition: transform 100ms ease-in;
}
.category_item .image {
  width: 160px;
  height: 160px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}
.category_item .name {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.category_item:hover {
  transform: scale(1.02);
}
/*
|------------------------------------------------------------------
|  icon_list
|------------------------------------------------------------------
*/
.icon_list {
  text-align: center;
  background-color: #1d1d1d;
  border-radius: 10px;
  padding: 15px 20px 20px;
  height: 100%;
}
.icon_list img {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}
.icon_list .text {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
  transition: all 300ms ease-in-out;
}
.icon_list:hover .text {
  color: var(--mg-yellow);
}
/*
|------------------------------------------------------------------
|  sign_form
|------------------------------------------------------------------
*/
.mg_modal_close {
  background: none;
  border: none;
  padding: 5px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: color 300ms ease-in-out;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
}
.mg_modal_close:hover {
  color: rgba(255, 255, 255, 1);
}
.sign_form {
  background-color: var(--mg-primary-dark-blue);
  padding: 50px 150px;
}
.sign_form .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 50px;
}
.sign_form .logo img {
  height: 70px;
}
.sign_form h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 30px;
}
.sign_form input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
}
.sign_form button {
  display: block;
  width: 100%;
  border-color: var(--mg-blue);
  background-color: var(--mg-blue);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
}
.sign_form button:hover {
  background-color: var(--mg-blue-hover);
}
.sign_form .info {
  display: flex;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  gap: 60px;
  justify-content: center;
  align-items: center;
  color: #a5a5a5;
}
.sign_form .forget {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  transition: text-decoration 300ms ease-in-out;
}
.sign_form a:hover {
  text-decoration: underline;
}
.sign_form .info .link {
  color: #fff;
}
/*  */
.errors ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--mg-primary-color);
}
/*
|------------------------------------------------------------------
|  gold_list
|------------------------------------------------------------------
*/
.gold_list {
  height: 525px;
  overflow-x: hidden;
  overflow-y: auto;
}
.gold_item {
  background: #0c0c0e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 300ms ease-in-out;
  border: 1px solid #252527;
  color: #9ca2ae;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
}
.gold_item .title {
  color: var(--mg-yellow);
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
}
.gold_item .image {
  width: 80px;
  border-right: 1px solid var(--mg-black);
  transition: all 300ms ease-in-out;
}
.gold_item .image img {
  width: 100%;
  height: auto;
}
.gold_item .text {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: all 300ms ease-in-out;
}
.gold_item .saled_price {
  text-decoration: line-through;
  font-size: 80%;
  font-weight: 400;
  margin-right: 3px;
}
.gold_item.active,
.gold_item:hover {
  border-color: var(--mg-yellow);
}
.gold_item.active {
  background: var(--mg-yellow);
  color: #463d1e;
}
.gold_item.active .title {
  color: #1c1c1c;
}

/* .gold_item.active .text,
.gold_item:hover .text {
  color: var(--mg-primary-color);
}
.gold_item.active .image,
.gold_item:hover .image {
  border-right-color: var(--mg-primary-color);
} */
/*
|------------------------------------------------------------------
|  buy_info
|------------------------------------------------------------------
*/
.buy_info {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}
.buy_info .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.buy_info .item + .item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.buy_info .item.total {
  font-size: 16px;
  font-weight: 600;
}
.buy_info .buttons {
  margin-top: 20px;
}
.buy_info button,
.buy_info a {
  background-color: var(--mg-yellow);
  display: block;
  border: none;
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  color: var(--mg-black);
}
/*
|------------------------------------------------------------------
|  order_payment
|------------------------------------------------------------------
*/
.order_payment {
  max-width: 600px;
  margin: 0 auto;
}
.order_payment .qr_image {
  background-color: #fff;
  margin: 0 auto 20px;
  width: fit-content;
}
.order_payment .qr_image img {
  max-width: 300px;
  height: auto;
}
/*
|------------------------------------------------------------------
|  guide
|------------------------------------------------------------------
*/
.guide .text {
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #6b7380;
}
.guide .text.sm {
  font-size: 18px;
}
.guide .text .text-primary {
  font-size: 1.3em;
  color: var(--mg-yellow) !important;
}
.guide .text2 {
  background-color: #0e0e10;
  padding: 10px 15px;
  border: 1px solid #1b1b1d;
  border-radius: 5px;
  font-style: italic;
  color: #6b7380;
  text-align: justify;
}
.guide .btn-outline-primary {
  border-color: var(--mg-yellow);
  color: var(--mg-yellow);
}
.guide .btn-outline-primary:hover {
  background-color: var(--mg-yellow);
  color: var(--mg-bg-color);
}
/*
|------------------------------------------------------------------
|  order_table
|------------------------------------------------------------------
*/
.order_table_wrap {
  background-color: #0c0c0e;
  padding: 15px;
  border-radius: 15px;

  border: 1px solid #252527;
}
.order_table {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
}
.order_table th,
.order_table td {
  padding: 10px 5px;
}
.order_table th {
  border-bottom: 1px solid #252527;
}
/*
|------------------------------------------------------------------
|  order_info
|------------------------------------------------------------------
*/
.order_info {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding: 15px 20px;
  background-color: #09090b;
  border: 1px solid #161616;
  color: #9ca2ae;
  border-radius: 20px;
}
.order_info .item {
  display: flex;
  justify-content: space-between;
}
.order_info .item .value {
  color: #fff;
  font-weight: 700;
}
.order_info .text-lg {
  font-size: 1.3em;
}
/*
|------------------------------------------------------------------
|  grid_item
|------------------------------------------------------------------
*/
.grid_item {
  position: relative;
  background-color: #0c0c0e;
  border: 1px solid #252527;
  overflow: hidden;
  border-radius: 15px;
  color: #9ca2ae;
  transition: all 300ms ease-in-out;
  height: 100%;
}
.grid_item .image {
  overflow: hidden;
}
.grid_item .image img {
  width: 100%;
  height: auto;
  transition: all 300ms ease-in-out;
}
.grid_item .content .info {
  color: var(--mg-yellow);
}
.grid_item .content {
  padding: 10px 15px;
}
.grid_item .content .title a {
  color: inherit;
  font-size: 14px;
}
.grid_item:hover .image img {
  transform: scale(1.05);
}
/*
|------------------------------------------------------------------
|  detail
|------------------------------------------------------------------
*/
.detail {
  color: #9ca2ae;
}
.detail .title {
  font-weight: 400;
}
.detail .info {
  color: var(--mg-yellow);
  font-size: 22px;
  margin-bottom: 15px;
}
.detail .image {
  margin-bottom: 15px;
}
.detail .image img {
  max-width: 100%;
  height: auto;
}
.detail .edtext * {
  max-width: 100%;
}
.detail .edtext a {
  color: var(--mg-yellow);
  background-color: transparent;
  border: 1px solid var(--mg-yellow);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
}
.detail .edtext a:hover {
  background-color: var(--mg-yellow);
  color: var(--mg-black);
}
.detail .buttons {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.detail .buttons a {
  color: var(--mg-yellow);
  background-color: transparent;
  border: 1px solid var(--mg-yellow);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
  display: inline-block;
}
.detail .buttons a:hover {
  background-color: var(--mg-yellow);
  color: var(--mg-black);
}
/*
|------------------------------------------------------------------
|  mgpagination
|------------------------------------------------------------------
*/
.mgpagination {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.mgpagination a {
  color: var(--mg-primary-color);
  padding: 7px 15px;
  border: 1px solid var(--mg-primary-color);
  border-radius: 10px;
  transition: all 300ms ease-in;
  font-size: 18px;
}
.mgpagination a:hover,
.mgpagination .active a {
  background-color: var(--mg-primary-color);
  color: #fff;
  border-color: var(--mg-primary-color);
}
/*
|------------------------------------------------------------------
|  faq_accord
|------------------------------------------------------------------
*/
#faq_accord {
  --bs-accordion-active-color: #9ca2ae;
  --bs-accordion-active-bg: #0c0c0e;
}
#faq_accord .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(156, 162, 174, 0.25);
}
/*
|------------------------------------------------------------------
|  footer
|------------------------------------------------------------------
*/
footer {
  border-top: 3px solid var(--mg-primary-color);
  padding-top: 40px;
}
.footer_contact {
  display: flex;
  gap: 80px;
}
.footer_contact .item a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_contact .item .icon {
  color: var(--mg-primary-color);
  font-size: 2rem;
}
.footer_contact .item .name {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.5);
}
.footer_contact .item .value {
  font-weight: 200;
  font-size: 1.2rem;
}
.footer_socials {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
}
.footer_socials a {
  transition: color 300ms ease-in-out;
}
.footer_socials a:hover {
  color: var(--mg-primary-color);
}
footer .copyright {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 200;
}
/* ------------------ bigloader ----------------- */
#bigloader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#bigloader:before {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  content: "\f1ce";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--mg-primary-color);
  font-size: 44px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-top: -22px;
  margin-left: -22px;
  -webkit-animation: 1s linear infinite spinner-border;
  animation: 1s linear infinite spinner-border;
}
@media (max-width: 1199px) {
  .gold_list {
    height: 500px;
  }
  .gold_item {
    gap: 10px;
  }
  .gold_item .image {
    width: 60px;
  }
}
@media (max-width: 991px) {
  section.top {
    padding-top: 40px;
  }
  section.bottom {
    padding-bottom: 40px;
  }
  .maintitle {
    font-size: 28px;
  }
  /*  */
  .sign_form {
    padding: 40px;
  }
  .sign_form .logo {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .sign_form h1 {
    font-size: 28px;
  }
  /*  */
  .guide .text {
    font-size: 18px;
  }
  /*  */
  #mainslider .item {
    height: 300px;
  }
  #mainslider .item .content h2 {
    font-size: 2rem;
  }
  /*  */
  .gold_list {
    height: 400px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 15px 0;
  }
  .menu_logo .logo img {
    height: 40px;
  }
  .maintitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
  section {
    padding: 25px 0;
  }
  section.top {
    padding-top: 20px;
  }
  section.bottom {
    padding-bottom: 20px;
  }
  /*  */
  .menu_logo {
    gap: 15px;
  }
  .menu_logo .mainmenu,
  .menu_logo .buttons {
    display: none;
  }
  .menu_logo .logo a span {
    display: none;
  }
  .menu_logo .mobile_menu {
    display: block;
    font-size: 24px;
  }
  .mobile_menu_list {
    list-style: none;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile_menu_list li {
    margin-bottom: 10px;
  }
  /*  */
  #mainslider .item {
    width: 100%;
    height: 150px;
  }
  #mainslider .item .content h2 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
  }
  #mainslider .item .btn-primary {
    font-size: 12px;
    padding: 5px 10px;
  }
  #mainslider .owl-dots {
    display: none;
  }
  /*  */
  .icon_list {
    padding: 5px 10px 10px;
  }
  .icon_list img {
    height: 55px;
    margin-bottom: 5px;
  }
  .icon_list .text {
    font-size: 10px;
  }
  /*  */
  .guide .text,
  .guide .text.sm {
    font-size: 16px;
  }
  /*  */
  .sign_form {
    padding: 20px;
  }
  .sign_form .logo {
    gap: 10px;
  }
  .sign_form .logo span {
    display: none;
  }
  .sign_form .logo img {
    height: 50px;
  }
  .sign_form h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sign_form input {
    padding: 8px 10px;
    font-size: 16px;
  }
  .sign_form button {
    font-size: 16px;
  }
  .sign_form .forget {
    font-size: 16px;
  }
  .sign_form .info {
    font-size: 16px;
    flex-direction: row;
  }
  /*  */
  .gold_list {
    height: 220px;
    margin-bottom: 0;
  }
  .gold_item .image {
    width: 50px;
  }
  .gold_item {
    padding: 13px 10px;
  }
  .gold_item .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .buy_info {
    padding: 10px;
    margin-top: 10px;
  }
  .buy_info .item + .item {
    padding-top: 7px;
    margin-top: 7px;
  }
  .buy_info .item.total {
    font-size: 14px;
  }
  .buy_info .buttons {
    margin-top: 10px;
  }
  .buy_info button,
  .buy_info a {
    padding: 5px;
    font-size: 14px;
  }
  /*  */
  .footer_contact {
    flex-direction: column;
    gap: 30px;
  }
  .footer_socials {
    margin-top: 15px;
  }
  footer .copyright {
    margin-top: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
}
