@media (min-width: 1400px) {
  .container {
    max-width: 1200px; } }
.pulse-wrapper {
  position: relative;
  display: inline-block; }

.pulse {
  position: relative;
  width: 50px;
  height: 50px;
  animation: btnPulse 2.0s infinite linear; }

.pulse-btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007FFF;
  border-radius: 50%;
  position: relative;
  z-index: 2; }

.pulse-btn img {
  width: 24px;
  height: 24px; }

.pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #DBDBDB;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: ringPulse 2.0s infinite linear; }

.pulse-wrapper:hover .pulse,
.pulse-wrapper:hover .pulse::after {
  animation-play-state: paused; }

@keyframes btnPulse {
  0% {
    transform: scale(1); }
  40% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }
@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0; }
  39% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1); }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0; } }
.tooltip-box {
  position: absolute;
  top: 50%;
  right: 110%;
  transform: translateY(-50%) translateX(20px);
  display: flex;
  width: 530px;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid #262626;
  background: #060606;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 10; }

.tooltip-title {
  color: #007FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px; }

.tooltip-desc {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left; }

.pulse-wrapper:hover .tooltip-box {
  opacity: 1;
  transform: translateY(-50%) translateX(0); }

.pulse-wrapper:hover .pulse-btn img,
.pulse-wrapper:hover .pulse-btn::after {
  animation-play-state: paused; }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999; }

.popup-overlay.active {
  opacity: 1;
  pointer-events: all; }

.popup-content {
  width: 90%;
  max-width: 500px;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #262626;
  background: #060606;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative; }
  .popup-content .button {
    display: none; }
    @media (max-width: 991px) {
      .popup-content .button {
        display: block; } }

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer; }

@media (max-width: 991px) {
  .tooltip-box {
    display: none; } }
.fz18 {
  font-size: clamp(14px, 4vw, 18px) !important;
  font-weight: 400; }

.fz24 {
  font-size: clamp(18px, 4vw, 24px) !important;
  font-weight: 400; }

.fz32 {
  font-size: clamp(21px, 4vw, 32px) !important;
  font-weight: 400; }

.fz36 {
  font-size: clamp(24px, 4vw, 36px) !important;
  font-weight: 400; }

.fz48 {
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 400; }

ul.slick-dots {
  bottom: -80px; }

.slick-prev:before, .slick-next:before {
  content: '' !important; }

.slick-prev {
  left: -66px !important; }
  @media (max-width: 576px) {
    .slick-prev {
      left: -10px !important;
      z-index: 9; } }

@media (max-width: 576px) {
  .slick-next {
    right: 0px !important; } }

.slick-prev, .slick-next {
  top: 24% !important; }
  @media (max-width: 576px) {
    .slick-prev, .slick-next {
      top: 20% !important; } }

.carousel-section,
.carousel-section .slick-list,
.carousel-section .slick-track {
  height: auto !important; }

.carousel-section .slick-slide {
  height: auto !important; }

.carousel-section .block {
  height: auto; }

.carousel-section .slick-track {
  min-height: 300px; }

#language-nav-ul li a {
  color: #fff; }

.caret {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(193deg) brightness(103%) contrast(101%); }

#hero {
  background-size: 1661px 830px !important; }
  @media (min-width: 1200px) and (max-width: 1400px) {
    #hero {
      background-position: 100% 100% !important; } }
  @media (max-width: 991px) {
    #hero {
      padding-top: 0 !important;
      background: none !important; } }
  #hero h1 {
    font-weight: bold; }
  #hero h3 {
    margin-bottom: 66px; }
  #hero .lrg {
    margin-bottom: 10px; }
    @media (max-width: 991px) {
      #hero .lrg {
        text-align: center; } }
    #hero .lrg p {
      font-size: clamp(20px, 4vw, 24px) !important;
      font-weight: 700; }
      @media (max-width: 991px) {
        #hero .lrg p {
          font-weight: 400; } }
  #hero .fz18 {
    margin-bottom: 66px; }
    @media (max-width: 991px) {
      #hero .fz18 {
        text-align: center; } }
  #hero .mobile {
    display: none; }
    @media (max-width: 991px) {
      #hero .mobile {
        display: block;
        margin-top: -50px; } }
  @media (max-width: 991px) {
    #hero .pulse-wrapper {
      margin-right: 70% !important;
      margin-top: -366px !important; } }

#performance {
  padding-bottom: 0; }
  #performance .pulse-wrapper.y2026 {
    margin-right: -180px;
    margin-top: 175px;
    float: right; }
    @media (max-width: 991px) {
      #performance .pulse-wrapper.y2026 {
        margin-top: 15px !important;
        margin-right: -180px !important; } }
    @media (max-width: 576px) {
      #performance .pulse-wrapper.y2026 {
        margin-top: 15px !important;
        margin-right: 14px !important; } }
  #performance .pulse-wrapper.y2025 {
    margin-right: 179px;
    margin-top: 46px;
    float: right; }
    @media (max-width: 991px) {
      #performance .pulse-wrapper.y2025 {
        margin-right: 154px !important;
        margin-top: -23px !important; } }
    @media (max-width: 576px) {
      #performance .pulse-wrapper.y2025 {
        margin-right: 58px !important;
        margin-top: -136px !important; } }
  #performance .pulse-wrapper.y2024 {
    margin-right: 196px;
    margin-top: 199px;
    float: right; }
    @media (max-width: 991px) {
      #performance .pulse-wrapper.y2024 {
        margin-right: 107px !important;
        margin-top: 102px !important; } }
    @media (max-width: 576px) {
      #performance .pulse-wrapper.y2024 {
        margin-right: 98px !important;
        margin-top: 100px !important; } }
  #performance .row {
    position: relative; }
  #performance h2 {
    font-weight: 700;
    z-index: 1;
    position: relative; }
    @media (max-width: 991px) {
      #performance h2 {
        text-align: left; } }
    @media (max-width: 576px) {
      #performance h2 {
        max-width: 300px; } }
    #performance h2 span {
      display: block;
      font-weight: 400; }
      @media (max-width: 576px) {
        #performance h2 span {
          display: inline; } }
  #performance .lrg {
    z-index: 1;
    position: relative; }
  #performance .image {
    height: 873px;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 0;
    top: -117px; }
    @media (max-width: 991px) {
      #performance .image {
        top: 40px;
        background-repeat: no-repeat !important;
        height: 573px; } }
    #performance .image.mobile {
      display: none; }
      @media (max-width: 576px) {
        #performance .image.mobile {
          display: block; } }
    @media (max-width: 576px) {
      #performance .image.desktop {
        display: none; } }
  #performance .blocks-widget {
    margin-top: 300px; }
    @media (max-width: 991px) {
      #performance .blocks-widget {
        margin-top: 100px; } }
    @media (max-width: 576px) {
      #performance .blocks-widget {
        margin-top: 200px; } }
    #performance .blocks-widget .abs {
      top: -110px;
      position: relative;
      text-align: right;
      margin-right: 47px;
      max-width: 300px;
      font-size: 12px;
      font-style: italic;
      margin-left: auto; }
      @media (max-width: 1200px) {
        #performance .blocks-widget .abs {
          top: -238px;
          margin-right: 26px;
          margin-bottom: -100px; } }
      @media (max-width: 991px) {
        #performance .blocks-widget .abs {
          top: 0px;
          margin-right: 26px;
          margin-bottom: 40px; } }
      @media (max-width: 768px) {
        #performance .blocks-widget .abs {
          top: -50px;
          margin-bottom: 0px; } }
      @media (max-width: 576px) {
        #performance .blocks-widget .abs {
          top: 0px;
          margin-bottom: 30px; } }
    #performance .blocks-widget .blocks {
      border-radius: 20px;
      border: 1px solid #262626;
      background: #060606;
      display: flex;
      padding: 20px 0;
      align-items: center;
      justify-content: space-around;
      gap: 10px;
      margin-bottom: 74px; }
      @media (max-width: 576px) {
        #performance .blocks-widget .blocks {
          flex-wrap: wrap;
          gap: 20px; } }
      #performance .blocks-widget .blocks .block {
        text-align: center; }
        @media (max-width: 576px) {
          #performance .blocks-widget .blocks .block {
            flex: 1 0 45%; } }
        #performance .blocks-widget .blocks .block img {
          margin-bottom: 10px; }

#moving-gold {
  padding-bottom: 0; }
  @media (max-width: 576px) {
    #moving-gold {
      overflow: hidden; } }
  #moving-gold .lrg {
    margin: 45px 0; }
    #moving-gold .lrg p {
      font-size: clamp(16px, 4vw, 18px) !important; }
  #moving-gold .carousel-section {
    margin-top: 70px; }
    @media (max-width: 576px) {
      #moving-gold .carousel-section {
        margin-top: 0; } }
    #moving-gold .carousel-section .block {
      display: flex;
      flex-direction: column;
      gap: 28px; }
      @media (max-width: 576px) {
        #moving-gold .carousel-section .block {
          padding: 0 20px;
          gap: 20px; } }
      #moving-gold .carousel-section .block .bluet {
        color: #007FFF;
        font-size: clamp(12px, 4vw, 15px) !important; }
      #moving-gold .carousel-section .block .text {
        font-size: clamp(16px, 4vw, 18px) !important; }
      @media (max-width: 576px) {
        #moving-gold .carousel-section .block .btn {
          width: 100%; } }
  #moving-gold ul.slick-dots li button {
    width: 78px;
    height: 4px;
    padding: 0; }
    @media (max-width: 576px) {
      #moving-gold ul.slick-dots li button {
        width: 52px; } }
  @media (max-width: 991px) {
    #moving-gold ul.slick-dots {
      bottom: -40px; } }
  @media (max-width: 991px) {
    #moving-gold .slick-dotted.slick-slider {
      margin-bottom: 40px; } }
  @media (max-width: 1400px) {
    #moving-gold img {
      width: 100%; } }
  @media (max-width: 576px) {
    #moving-gold img {
      width: 200%;
      margin-left: -30%; } }
  #moving-gold .widget {
    padding-top: 100px; }
    @media (max-width: 991px) {
      #moving-gold .widget {
        padding-top: 20px;
        margin-top: 64px; } }
    #moving-gold .widget .disclaimer {
      text-align: right;
      max-width: 300px;
      font-size: 12px;
      font-style: italic;
      margin-left: auto;
      margin-top: 20px;
      margin-right: 40px; }

#trading {
  padding-top: 0;
  background: url("/mena/wp-content/uploads/2026/02/map-dots.png") bottom center no-repeat; }
  #trading .row {
    margin-bottom: 170px; }
    @media (max-width: 991px) {
      #trading .row {
        margin-bottom: 120px; } }
    #trading .row:last-child {
      margin-bottom: 0; }
  #trading .first {
    margin-top: 140px;
    align-content: center;
    align-items: center; }
    #trading .first .bluet {
      color: #007FFF;
      margin-top: -15px;
      margin-bottom: 30px; }
      @media (max-width: 991px) {
        #trading .first .bluet {
          text-align: left;
          margin-bottom: -40px; } }
    #trading .first .sml {
      margin-bottom: 30px; }
      @media (max-width: 991px) {
        #trading .first .sml {
          margin-top: -60px;
          z-index: 1111;
          position: relative; } }
    @media (min-width: 1200px) {
      #trading .first img {
        margin-left: -141px; } }
    @media (max-width: 1200px) {
      #trading .first img {
        width: 100%;
        margin-left: auto; } }
  #trading .blocks {
    display: inline-flex;
    gap: 20px;
    width: 100%; }
    #trading .blocks .block {
      display: flex;
      flex-direction: column;
      align-content: center;
      align-items: center;
      text-align: center;
      gap: 20px;
      width: 100%;
      max-width: 405px; }
    @media (max-width: 768px) {
      #trading .blocks {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch; }
        #trading .blocks .block {
          min-width: 116px;
          flex: 0 0 auto;
          max-width: 280px;
          border-radius: 20px;
          border: 1px solid #262626;
          background: #060606;
          padding: 20px; } }
  #trading .image {
    position: relative; }
    @media (max-width: 991px) {
      #trading .image:after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.02) 60%);
        pointer-events: none;
        z-index: 1;
        height: 100%;
        bottom: 0; } }
  #trading .mobile {
    display: none; }
    @media (max-width: 991px) {
      #trading .mobile {
        display: block; } }
  @media (max-width: 991px) {
    #trading .desktop {
      display: none; } }

@media (max-width: 991px) {
  header .subheader {
    display: block; } }
.page-id-2316 #performance .lrg, .page-id-2364 #performance .lrg {
  font-size: clamp(16px, 4vw, 18px) !important; }
  @media (max-width: 768px) {
    .page-id-2316 #performance .lrg, .page-id-2364 #performance .lrg {
      display: none; } }
.page-id-2316 #moving-gold .carousel-section .block, .page-id-2364 #moving-gold .carousel-section .block {
  bottom: 50px;
  position: relative; }
.page-id-2316 #performance .pulse-wrapper.y2024, .page-id-2364 #performance .pulse-wrapper.y2024 {
  margin-right: 21px;
  margin-top: 231px; }
  @media (max-width: 768px) {
    .page-id-2316 #performance .pulse-wrapper.y2024, .page-id-2364 #performance .pulse-wrapper.y2024 {
      margin-right: 33px !important; } }
  @media (max-width: 576px) {
    .page-id-2316 #performance .pulse-wrapper.y2024, .page-id-2364 #performance .pulse-wrapper.y2024 {
      margin-top: 45px !important; } }
.page-id-2316 #performance .pulse-wrapper.y2023, .page-id-2364 #performance .pulse-wrapper.y2023 {
  margin-left: 54px;
  margin-top: 253px; }
  @media (max-width: 991px) {
    .page-id-2316 #performance .pulse-wrapper.y2023, .page-id-2364 #performance .pulse-wrapper.y2023 {
      margin-top: 46px;
      margin-left: 198px; } }
  @media (max-width: 768px) {
    .page-id-2316 #performance .pulse-wrapper.y2023, .page-id-2364 #performance .pulse-wrapper.y2023 {
      margin-top: 100px !important; } }
  @media (max-width: 576px) {
    .page-id-2316 #performance .pulse-wrapper.y2023, .page-id-2364 #performance .pulse-wrapper.y2023 {
      margin-top: 26px !important;
      margin-left: 126px !important; } }
@media (max-width: 768px) {
  .page-id-2316 #performance .pulse-wrapper.y2025, .page-id-2364 #performance .pulse-wrapper.y2025 {
    margin-right: 107px !important;
    margin-top: 3px !important; } }
@media (max-width: 576px) {
  .page-id-2316 #performance .pulse-wrapper.y2025, .page-id-2364 #performance .pulse-wrapper.y2025 {
    margin-right: 50px !important;
    margin-top: -79px !important; } }
@media (max-width: 768px) {
  .page-id-2316 #performance .pulse-wrapper.y2026, .page-id-2364 #performance .pulse-wrapper.y2026 {
    margin-top: 64px !important; } }
@media (max-width: 576px) {
  .page-id-2316 #performance .pulse-wrapper.y2026, .page-id-2364 #performance .pulse-wrapper.y2026 {
    margin-top: 12px !important; } }

html[dir="rtl"] #hero .tooltip-box {
  right: auto;
  left: 110%; }
@media (min-width: 1200px) {
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2023 {
    margin-right: 500px;
    margin-top: 0; } }
@media (max-width: 1200px) {
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2023 {
    margin-right: 500px;
    margin-top: 0; } }
@media (max-width: 991px) {
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2023 {
    margin-right: 99px;
    margin-top: 144px; } }
@media (max-width: 991px) {
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2024 {
    margin-right: -1px !important;
    margin-top: 102px !important; }
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2026 {
    margin-top: 38px !important;
    margin-right: -126px !important; } }
@media (max-width: 576px) {
  html[dir="rtl"] #performance .wrapper {
    margin-right: 125px;
    margin-top: 57px; }
  html[dir="rtl"] .page-id-2316 #performance .pulse-wrapper.y2025, html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2025 {
    margin-right: -78px !important;
    margin-top: -46px !important; }
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2024 {
    margin-right: -1px !important;
    margin-top: 31px !important; }
  html[dir="rtl"] .page-id-2364 #performance .pulse-wrapper.y2023 {
    margin-top: 35px !important;
    margin-left: 126px !important; }
  html[dir="rtl"] #performance .blocks-widget {
    margin-top: 102px; }
  html[dir="rtl"] .page-id-2346 #performance .wrapper {
    margin-right: -18px;
    margin-top: 107px; } }
html[dir="rtl"] #hero .pulse-wrapper {
  margin-left: 30%;
  float: left !important;
  margin-right: auto !important; }
html[dir="rtl"] .page-id-2364 #moving-gold .carousel-section .block .bluet {
  display: none; }
html[dir="rtl"] .tooltip-desc {
  text-align: right; }
html[dir="rtl"] .popup-close {
  right: auto;
  left: 15px; }
html[dir="rtl"] #moving-gold .carousel-section .block {
  text-align: right;
  bottom: 30px;
  position: relative; }
html[dir="rtl"] .slick-next {
  right: -25px !important;
  left: auto; }
@media (max-width: 991px) {
  html[dir="rtl"] #performance h2 {
    text-align: right;
    margin-top: -70px; }
  html[dir="rtl"] #performance .lrg {
    margin-bottom: 70px; } }
@media (max-width: 991px) {
  html[dir="rtl"] #trading .first .bluet {
    text-align: right; } }
@media (max-width: 576px) {
  html[dir="rtl"] #moving-gold img {
    margin-left: auto;
    margin-right: -70%; } }

/*# sourceMappingURL=lp-gold-silver.css.map */
