@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+J:ital,wght@0,100..400;1,100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lalezar&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Lalezar&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Playwrite+CU:wght@100..400&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
} 

::-webkit-scrollbar { width: 5px; }
  
::-webkit-scrollbar-track { background-color: transparent; }

::-webkit-scrollbar-thumb {
  background-color: #ffd000;
  border-radius: 200px;
}

body {
  overflow-x: hidden !important;
}


nav{
  display: flex;
  height: 55px;
  width: 100%;
  background: linear-gradient(124deg,  #ffffff, #ffd000);
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  box-shadow: 1px 1px 10px 5px #00000044;
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
.logo-img{
    width: 80px;
    margin-top: -10px;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: -10px;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #ffe600;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  margin-top: -10px;
}
input[type="checkbox"]{
  display: none;

}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
    nav ul li a{
        color: #ffffff;
 
        
      }
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 65px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 900;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: #FFD966;
  }
}





.m-by-jk-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px); 
  z-index: 1000; 
  opacity: 1;
  transition: opacity 0.50s ease-out; 
}

.m-by-jk-loader img {
  width: 100px; 
  height: auto;
  margin-bottom: -15px;
}


.line-wobble {
  --uib-size: 80px;
  --uib-speed: 1.55s;
  --uib-color: black;
  --uib-line-weight: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-line-weight);
  width: var(--uib-size);
  border-radius: calc(var(--uib-line-weight) / 2);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  margin-left: 10px;
 }
 
 .line-wobble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--uib-color);
  opacity: 0.1;
 }
 
 .line-wobble::after {
  content: '';
  height: 100%;
  width: 100%;
  border-radius: calc(var(--uib-line-weight) / 2);
  animation: wobble var(--uib-speed) ease-in-out infinite;
  transform: translateX(-90%);
  background-color: var(--uib-color);
 }
 
 @keyframes wobble {
  0%,
   100% {
   transform: translateX(-90%);
  }
 
  50% {
   transform: translateX(90%);
  }
 }
 




 .m-by-jk-modal {
display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.732);
  align-items: center;
  justify-content: center;
}

.m-by-jk-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ffffff;
  width: 450px;
  position: relative;
  
}

.m-by-jk-modal-content h2 {
  background: linear-gradient(to right, #ffd929 15%, #000000eb 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.m-by-jk-close-button {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.m-by-jk-close-button:hover,
.m-by-jk-close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.jk-translate-btn{
  display: flex; 
            justify-content: center; 
            gap: 10px;

}
.m-by-jk-button {
  width: 100px;
  margin: 5px;
  padding: 10px 20px;
    font-size: 16px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:  1px 1px 10px #00000022,
    -1px -1px 10px #00000000;
    margin-left: auto;
    margin-right: auto;
    font-family: "Alexandria", sans-serif;
}

.m-by-jk-button:hover,
.m-by-jk-button.active {
  background: linear-gradient(40deg,  #ffef3e, #ffd929);
  box-shadow: inset 5px 5px 5px #00000043,
  inset -7px -7px 14px #ffffff43;
  color: rgb(255, 255, 255);
}

.m-by-jk-modal-Developed-txt{
  margin-bottom: -10px;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.349);
  text-align: center;
}

.jk-language-btn{
  text-align: center;
}


.top-view-caver {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;

  }
  
  .text-content {
    text-align: center; 
    margin-top: 40px;
    padding: 20px 50px;
    
  }

  h3 {
    font-size: 55px;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #ffd929 15%, #000000eb 50%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  
  p {
    font-size: 16px;
    margin: 0 0 30px 0;

  }
  
  .viewer-btu {
    padding: 12px 25px;
    font-size: 16px;
    background: linear-gradient(40deg,  #ffef3e, #ffd929);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:  1px 1px 10px #00000022,
    -1px -1px 10px #00000000;
  }
  
  .viewer-btu:hover {
    box-shadow:  1px 1px 10px #0000006a,
    -1px -1px 10px #00000000;
    transform: scale(1.04);
    color: rgb(255, 255, 255);
    background: linear-gradient(40deg,  #ffd929, #06060691);
  }
  
  .viewer-img-by-jk-4 {
    display: flex;
    flex-direction: row;
    gap: 1px;
    align-items: flex-start; 
    justify-content: flex-end; 
    flex: 1;
    margin-top: -50px;
    margin-right: -20px;
  }


  


.start-p-p {
  margin-top: -76px;
  display: flex;
  flex-direction: column;
  align-items: center;
 width: 250px;
 height: 50px;
margin-left: 140px;
}

.icon-start-pp {
  display: flex;
  align-items: center;
  margin-bottom: -19px;

}
.icon-start-pp i{
  color: #ffdd1c;
  font-size: 14px;
  transition: all 0.3s ease; 

}
.icon-start-pp i:hover {
  transform: scale(1.60); 
  color: #ffdd1c68;
}
.icon-start-pp p{
  color: #3b3b3b;
  font-size: 12px;
  font-family: "Lexend", sans-serif;;
  margin-right: 10px;
  margin-top: 30px;
}

.share-title-start-pp {
  display: flex;
  align-items: center;
  gap: 5px;
  
}
.share-title-start-pp i{
  color: #ffdd1c;
  margin-top: -25px;
}
.share-title-start-pp p{
  font-family: "Lexend", sans-serif;
  color: #3b3b3b;
  margin-right: 10px;
}
.star-p-p-img {
  width: 95px; 
  height: auto;
  margin-top: -30px;
}




.cont-jk-fvdcDFdvs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  box-shadow:  1px 12px 10px #ffffff00,
  -1px -10px 15px #0000001f;
  margin-top: -200px;
  margin-bottom: 20px;
}
.box {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 200px;
  flex: 1 1 calc(33.333% - 40px); 
  transition: all 0.3s ease;
  border: 2px solid #dee2e6a5;
}
.box:hover{
  transform: scale(1.04);
  box-shadow:  1px 1px 10px #00000039,
  -1px -1px 10px #00000000;
}
.box h3 {
  margin: 0;
  color: #333;
  font-size: 15px;
  background: linear-gradient(to right, #ffd929 35%, #000000eb 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.box p {
  margin: 5px 0 0;
  color: #666;
}



.jk-t-txt-up{
  background: linear-gradient(to right, #ffd929 35%, #3c3c3c 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: flex;
  justify-content: space-around; 
  justify-content: center;
  font-size: 29px;
  text-align: center; 
  margin: auto;
  padding: 1px 40px;
  font-family: "Lexend", sans-serif;
}

.jk-t-txt-down{
  color: #c2c2c2;
  display: flex;
  justify-content: space-around; 
  justify-content: center;
  font-size: 14px;
  text-align: center; 
  margin: auto;
  padding: 1px 40px;
  margin-bottom: 10px;
  font-family: "Playwrite GB J", cursive;
  margin-bottom: 20px;
}


.cont-jk-HsfdvEWV {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: -20px;

}

.trading-box,
.social-media-box,
.dropshipping-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 200px;
  flex: 1 1 calc(33.333% - 40px);
  transition: all 0.3s ease;
  z-index: 99;
  border: 2px solid #dee2e6a5;
}

.trading-box:hover,
.social-media-box:hover,
.dropshipping-box:hover {
  transform: scale(1.04);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.23),
  -1px -1px 10px rgba(0, 0, 0, 0);
}

.trading-box h3,
.social-media-box h3,
.dropshipping-box h3 {
  margin: 0;
  color: #333;
  font-size: 19px;
  background: linear-gradient(to right, #ffd929 45%, #000000eb 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.trading-box p,
.social-media-box p,
.dropshipping-box p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #6666669d;
  font-family: "Playwrite GB J", cursive;
}


.cont-jk-HsfdvEWV-img {
  width:60%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}



@keyframes moveBg {
  from { background-position: 0 50%; }
  to { background-position:  -1134px 50%; }
}

.logos-caver-BsdcDScn {
  --blur: 6px;
  --contrast: 105%;
  --speed: 40s;
  height: 250px;
  margin-bottom: -50px;
  width: 100%;
  position: relative;
  margin-top: -40px;

}
  .Blur-caver-KjcJFN {
    position: absolute;
    inset: 0;
    background: #0000;
    backdrop-filter: blur(var(--blur)) contrast(var(--contrast));
    -webkit-backdrop-filter: blur(var(--blur)) contrast(var(--contrast)); 
    -webkit-mask: linear-gradient(90deg, #000 50px, #0000 175px calc(100% - 175px), #fff calc(100% - 50px));
    pointer-events: none;
  }

  .logo-c-HkdnDM {
    animation: moveBg var(--speed) linear infinite;
    position: absolute;
    inset: 0;
    background: url(../img/support-by.png) 0 50% / 567px 75px repeat-x;
    -webkit-mask: linear-gradient(90deg, #0000 5px, #000 50px calc(100% - 50px), #0000 calc(100% - 5px));
  }




  .parallax-dfvscCSSDCS {
    position: relative;
    background-image: url('../img/js-img-by-jk-mrhedy.jpg') ;
    height: 90vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    display: flex;
    justify-content: center;
    align-items: center;
  
}

.parallax-text-c {
    position: relative;
    color: #fffdfd;
    backdrop-filter: blur(10px); 
    padding: 20px 30px;
    border-radius: 10px; 
    text-align: center;
    max-width: 90%; 
    transition: transform 0.4s ease-out;
    box-sizing: border-box;

}

.parallax-text-c h2 {
    margin: 0;
    font-size: 3em;
    background: linear-gradient(to right, #ffd929 25%, #ffffff 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.parallax-text-c p {
    margin: 10px 0 0;
    font-size: 1em;
    font-family: "Playwrite GB J", cursive;
}


.m-by-jk-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

.jk-see-tIDNksd {
  margin-top: 30px;
}

.jk-see-tIDNksd p {
  font-size: 14px;
}

.m-by-jk-package {
  position: relative; 
  background: linear-gradient(30deg,  #ffffff 55%, #ffd621f3 120%);
  border-radius: 10px;
  border: 2px solid #dee2e6a5;
  padding: 20px;
  width: 400px;
  text-align: center;
  margin: 10px 1px;
  transition: all 0.5s ease;
}
.m-by-jk-package:hover{
  box-shadow:  4px 4px 10px #bbbbbb5c,
             -4px -4px 10px #bbbbbb5c;
}

.m-by-jk-package img {
  width: 200px;
}
.m-by-jk-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #51ff00;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
   font-family: "Lexend", sans-serif;
}

.m-by-jk-price {
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(to right, #ffd929 45%, #000000eb 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 5px 0;
  margin-top: 20px;
}

.m-by-jk-previously {
  font-size: 16px;
  color: #ff00008c;
  text-decoration: line-through;
  margin-bottom: 15px;
}
.m-by-jk-package h2 {
font-family: "Lexend", sans-serif;
background: linear-gradient(to right, #ffd929 35%, #000000eb 70%);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
margin-bottom: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.m-by-jk-package ul li {
  background: #f0f0f0;
  margin: 5px 0;
  padding: 10px;
  color: #1bd6345d;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: context-menu;
}

.m-by-jk-package li:hover{
  color: #51ff00;
  transform: scale(1.02);
}

.m-by-jk-package button {
  background: linear-gradient(40deg,  #ffef3e, #ffd929);
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
}

.m-by-jk-package button:hover {
  box-shadow:  1px 1px 10px #0000001e,
  -1px -1px 10px #00000000;
  transform: scale(1.02);
  color: rgb(255, 255, 255);
  background: linear-gradient(40deg,  #ffd929, #06060691);
}




.m-by-jk-cont-lIbaJE {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  margin-bottom: -25px;
}

.m-by-jk-image-lIbaJE {
  flex: 1;
  padding: 10px;
}

.m-by-jk-image-lIbaJE img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.m-by-jk-content-lIbaJE {
  flex: 2;
  padding: 20px;
  text-align: left;
}

.m-by-jk-content-lIbaJE h3 {
  margin: 0 0 10px 0;
  
}

.m-by-jk-content-lIbaJE p {
  margin: 15px 0;
  font-size: 18px;
  position: relative;

}

.g-for-img-rev {
  width: 100%;
  position: relative;
  margin-top: 80px;
  margin-bottom: -5px;
  color: #000000;
}


.m-by-jk-slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
background: #ffffff00;

}


.m-by-jk-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left; 
  z-index: 2;
}

.m-by-jk-slide img {
  width: 100%;
  height: auto; 
  max-height: 100%;
  object-fit: cover; 
  border-radius:  25px;


}

.m-by-jk-slide .text-content {
  position: absolute;
  left: 20px; 
  color: white;
  padding: 10px;
  border-radius: 10px;
}

.m-by-jk-slide .text-content h3 {
  font-size: 3rem;
  margin: 0 0 10px 0;
  color: rgb(240, 214, 69);
  text-align: left;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.895); 
}

.m-by-jk-slide .text-content p {
  font-size: 1.50rem;
  margin: 0 0 10px 0;
  text-align: left;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.76);
}




.crypto-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1600px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.crypto-box {
  display: flex;
  align-items: center;
  border: 2px solid #dee2e6a5;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  gap: 5px;
  height: 70px;
  flex: 1 1 300px; 
  box-sizing: border-box; 
  transition: all 0.3s ease;
}


.crypto-box:hover {
transform: scale(1.01);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.23),
-1px -1px 10px rgba(0, 0, 0, 0);
}

#crypto-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.crypto-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#crypto-name {
  font-size: 15px;
  background: linear-gradient(to right, #ffd929 25%, #000000eb 80%);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
  margin-top: 20px;
}

#crypto-price {
  font-size: 14px;
  color: #00000084;
  margin-top: -3px;
}

.loading {
  font-size: 18px;
  color: #333;
}






.m-by-jk-join-t-i {
  width: 95%;
  background-color: white;
  border-radius: 10px;
  border: 2px solid #dee2e6a5;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.m-by-jk-join-t-i img {
  width: 60px;
  border-radius: 50%;
}
.m-by-jk-header-join-t-i {
  display: flex;
  align-items: center;
}
.m-by-jk-icon-join-t-i {
  margin-right: 10px;
}
.m-by-jk-arrow-join-t-i {
  margin-left: auto;
  font-size: 18px;
  color: #888;
}
.m-by-jk-divider-join-t-i {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
}
.m-by-jk-content-join-t-i {
  margin-top: 10px;
}
.m-by-jk-title-join-t-i {
  font-size: 16px;
  font-weight: bold;
   color: rgb(240, 214, 69);
}
.m-by-jk-description-join-t-i {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}
.m-by-jk-footer-for-join {
  display: flex;
  margin-top: 15px;
}
.m-by-jk-btn-join-t-i {
  background: linear-gradient(40deg,  #ffef3e, #ffd929);
  color: rgb(21, 21, 21);
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  margin-right: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.m-by-jk-btn-join-t-i:hover {
box-shadow:  1px 1px 10px #0000006a,
-1px -1px 10px #00000000;
transform: scale(1.04);
color: rgb(255, 255, 255);
background: linear-gradient(40deg,  #ffd929, #06060691);
}





.mrhedy-video-info {
  display: flex;
  justify-content: center; 
  align-items: center; 
  position: relative; 
  width: 95%;
  background-color: white;
  border-radius: 10px;
  border: 2px solid #dee2e6a5;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.mrhedy-video-info video {
  max-width: 100%; 
  height: auto; 
  transition: filter 0.3s ease; 
  border-radius: 10px;
}

.mrhedy-video-info video.blurred {
  filter: blur(8px); 
}

.watch-more-button {
  display: none;
  position: absolute;
  top: 50%; 
  left: 50%; 
  border-radius: 8px;
  transform: translate(-50%, -50%); 
  padding: 10px 20px;
  background: linear-gradient(40deg,  #ffef3e, #ffd929);
  color: #000000; 
  font-size: 18px;
  border: none;
  cursor: pointer;
  z-index: 10; 
  box-shadow:  1px 1px 15px #0000009d;
}





#tradingview-widget {
  width: 95%;
  height: 400px;
  background-color: white;
  border-radius: 10px;
  border: 2px solid #dee2e6b6;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}




#filter-txt-by-jk {
	position: absolute;
	margin: auto;
  left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	filter: url(#threshold) blur(0.6px);
margin-top: 70px;

}

#filter-txt-by-jk-1, #filter-txt-by-jk-2 {
	position: absolute;
	width: 90%;
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	font-size: 70px;
	text-align: center;
	user-select: none;
  background: linear-gradient(to right, #ffd929 35%, #000000eb 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  left: 50%;
	transform: translate(-50%, -50%);
}





.phone-img-caver-m-by-jk {

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
  
}
.img-phone-by-jk {
  width: 600px;
  transition: transform 0.1s, width 0.3s; 
 
}

.blur-circle-by-jk {
  position: absolute;
  width: 700px;
  height: 700px;
  background-color: #ffd829ba; 
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1; 
}



.details-d-by-jk-cvr{
  padding: 0px 90px 0px 90px;
  margin-bottom: 70px;
}


.details-d-by-jk-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding: 20px 20px 0px 20px;
}

.details-d-by-jk-tabs summary {
  background-color: #e8e8e8b9;
  color: #ffd900;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  text-align: center;
  white-space: normal; 
}

.details-d-by-jk-tabs summary:hover,
summary.details-d-by-jk-active {
  background-color: #ffd900;
  color: #ffffff;
}

.details-d-by-jk-tab-content-container {
  background-color: #ffffff00;
  border-radius: 5px;
  display: none;
 
}
.details-d-by-jk-tab-content-container p {
  font-size: 18px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.details-d-by-jk-tab-content-container.details-d-by-jk-active {
  display: block;
}






.menu-cont-r-by-jk {
  position: fixed;
  bottom: 30px;
  right: -245px; 
  width: 300px;
  height: 50px;
  background-color: #ffd929;
  transition: right 0.5s ease-in-out;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  z-index: 900;
  display: none;
 
}
.menu-cont-r-by-jk.show {
  right: -50px;
}
.menu-cont-r-by-jk.shows {
  display: block;
  opacity: 1;
}
.menu-button-r-by-jk {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 50px;
  background-color: #ffd929;
  border: none;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(255, 255, 255);
  font-size: 20px;
}
.menu-content-r-by-jk {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-btn-by-jk  {
  background-color: white;
  padding: 5px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  margin-top: -5px;
  color: #ffd929;
  font-size: 25px;
    transition: all 0.3s ease;
}
.chat-btn-by-jk i {
margin-top: -8px;
}
.chat-btn-by-jk:hover {
  box-shadow:  1px 1px 10px #0000004c,
  -1px -1px 10px #00000000;
  transform: scale(1.01);
  color: rgb(255, 255, 255);
  background: linear-gradient(40deg,   #fffd8091, #ffe77a);
  }
.lang-btn-men-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -5px;
 margin-right: 45px;
}
.lang-btn-menu {
  background-color: white;
  padding: 5px;
  color: #7e7e7e;
  border: none;
  width: 60px;
  height: 35px;
  border-radius: 8px;
  text-align: center;
  margin: 2px;
  font-family: "Alexandria", sans-serif;
  font-size: 12px;
  transition: all 0.3s ease;
}

.lang-btn-menu:hover {
  box-shadow:  1px 1px 5px #00000031,
  -1px -1px 5px #00000000;
  transform: scale(1.01);
  color: rgb(255, 255, 255);
  background: linear-gradient(40deg,   #fffb0f91, #ffd929);
  }




  .background-circle-232 {
    position: absolute;
    filter: blur(180px);
    width: 200px; 
    height: 500px;
    background-color: #ffd929; 
    border-radius: 50%; 
margin-left: -100px;
    z-index: 1; 
}


.background-black-b {
  background-color: black;
  padding:30px; 
  margin: 0; 
  z-index: -1;
}



  .m-by-jk-52343-article {
    z-index: 1;
    font-size: 4vmin;
    background: white;
    padding: 2em 2em 2em 3em;
    width: 85vmin;
    height: 700px;
    margin: 0 auto; 
    background: 
      radial-gradient(circle at 0.4em 50%, #000 0.125em, #0000 0.135em) 0 0 / 100% 3vmin repeat-y,
      linear-gradient(90deg, #0000 2.35em, #fbb 0 2.4em, #0000 0),
      repeating-linear-gradient(#0000 0 5%, #99f 0 5.1%) 100% 50% / calc(100% - 2.35em) 82% no-repeat,
      #eee;
    border-radius: 0.05em;
    box-shadow: 
      0.1em 0.1em #ddd,
      0.065em 0.05em #fff,
      0.15em 0.15em #bbb,
      0.125em 0 0 0.15em #333,
      0.25em 0.125em 0 0.15em #000;
    transform: rotate(3deg) translate(5%, 5%);
    transform-origin: 10% 10%;
    position: relative;
    filter: drop-shadow(-0.25vmin 0.1em 0.35vmin #0002) drop-shadow(1vmin 0 1vmin #0003);
    text-align: left;
    margin-bottom: 90px;
    margin-top: 10px;
  }
  

  .m-by-jk-52343-article::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1em;
    width: 1.5em;
    height: 100%;
    background: 
        linear-gradient(#0000 0.225em, #999 0 0.375em, #0000 0) 80% 0 / 68% 3vmin repeat-y,
        linear-gradient(25deg, #0000 0.225em, #666 0 0.35em, #0000 0) 44% 0.1% / 40% 3vmin repeat-y,
        radial-gradient(circle at 0.4em 50%, #999 0.075em, #0000 0.085em) 0 0 / 100% 3vmin repeat-y,
        radial-gradient(circle at 1.4em 50%, #999 0.075em, #0000 0.085em) 0 0 / 100% 3vmin repeat-y,
        #f000;
  }

  .m-by-jk-52343-h2 {
    margin: 0;
    font-size: 6.5vmin;
    white-space: pre;
    position: relative;
    text-align: center;
    font-family: "Indie Flower", cursive;
  }

  .m-by-jk-52343-h2::before {
    content: "";
    position: absolute;
    width: 95%;
    height: 100%;
    background: #f003;
    background: radial-gradient(175% 100% at 50% 100%, #0000 50%, #000 51% 55%, #0000 56%);
    left: -1%;
    top: 25%;
    transform: rotate(0.25deg);
  }

  .m-by-jk-52343-del {
    text-decoration-color: #f00c;
  }

  .m-by-jk-52343-u {
    text-decoration: none;
    transform: rotate(-2deg) skew(-2deg);
    position: relative;
    display: inline-block;
  }

  .m-by-jk-52343-u::before,
  .m-by-jk-52343-u::after {
    content: "";
    position: absolute;
    width: 95%;
    height: 100%;
    background: #f003;
    background: radial-gradient(195% 100% at 50% 100%, #0000 50%, #000 51% 55%, #0000 56%);
    left: -1%;
    top: 30%;
    transform: rotate(0.25deg);
  }

  .m-by-jk-52343-u::before {
    transform: rotate(1.5deg);
    left: 2%;
    top: 40%;
  }

  .m-by-jk-52343-ol {
    line-height: 5.4vmin;
    margin-top: 4.25vmin;
  }

  .m-by-jk-52343-ol li{
    font-family: "Indie Flower", cursive;
  }

.custom-shape-divider-bottom-1725479553 {

    
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1725479553 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 124px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1725479553 .shape-fill {
    fill: #000000;
}










.m-by-jk-footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  border-top: 3px solid #dedede;
}

.m-by-jk-container-Imcoe {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.m-by-jk-row-OCImwso {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.m-by-jk-col-KmsIEN, .m-by-jk-col, .m-by-jk-flw-us {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
  max-width: 900px;
  margin: 0 10px;
}

.horizontal-links {
  display: flex;
  justify-content: center;
  gap: 0px; 
  flex-wrap: wrap;

}
.m-by-jk-footer h4 {
  color: #000000b7;
  font-weight: 500;
  font-size: 15px;
}
.horizontal-links a {
  color: #6c757d;
  text-decoration: none;
  margin: 5px 5px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.horizontal-links a:hover {
  text-decoration: underline;
  transform: scale(1.07);
}

.horizontal-links-2 a {
  font-size: 15px;
}
.m-by-jk-payment-methods {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.m-by-jk-payment-methods img {
  height: 80px;
}
.m-by-jk-footer-logo{
  width: 120px;
}
.m-by-jk-flw-us p {
  margin: 0;
  font-size: 10px;
}

.m-by-jk-developed-cover {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.jk-developed-this {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}

.jk-developed-this a {
  transition: all 0.5s ease;
  color: #6c757d;
}
.jk-developed-this a:hover{
  color: #000000;
  text-decoration: none;
}






@media (max-width: 1230px) {
.cont-jk-fvdcDFdvs {
margin-top: -120px;

}
  }

  @media (max-width: 1200px) {
    .cont-jk-fvdcDFdvs {
    margin-top: -55px;
    
    }
      }


  @media (max-width: 1100px) {
    .text-content {
      margin-top: -10px;
   
    }
    h3 {
      font-size: 38px;
    }
    p {
      font-size: 13px;
  
    }
  
.cont-jk-fvdcDFdvs {
  margin-top: -90px;
}
    }

    @media (max-width: 900px) {
      .text-content {
        margin-top: -10px;
     
      }
      h3 {
        font-size: 38px;
      }
      p {
        font-size: 13px;
    
      }
      .cont-jk-fvdcDFdvs {
        margin-top: 10px;
      
      }
  
      }

  @media (min-width: 768px) {
    .top-view-caver {
      flex-direction: row;
      align-items: flex-start; 
      justify-content: space-between;
    }
  
    .text-content {
      text-align: left; 
      max-width: 50%;
      margin-right: 40px; 
    }
  
    .viewer-img-by-jk-4 {
      display: flex;
      flex-direction: row;
      align-items: flex-start; 
      justify-content: flex-end; 
      margin-top: -20px;
      margin-right: -20px;
    }
  
    .viewer-img-by-jk-4 img {
      max-width: 120%;
      height: auto;
      margin-left: auto;
      margin-right: auto;
    }
    #main-img {
      content: url('img/mrhedy-img-by-jk23233.png');


  }
  
  
  }
  

  @media (max-width: 767px) {
    .m-by-jk-modal-content{
      width: 90%;
    }
    .top-view-caver {
      text-align: center;
    }
  
    .text-content {
      text-align: center;
      margin-bottom: 20px;
      margin-top: 10px;
      padding: 10px;
    }
    h3 {
      font-size: 40px;
    }
    
    p {
      font-size: 14px;
    }
  
    .viewer-img-by-jk-4 {
      display: flex;
      flex-direction: row;
      justify-content: center; 
      margin-top: 20px;
      margin-left: auto;
     margin-right: auto;
     display: flex;
    }
  
    .viewer-img-by-jk-4 img {
      max-width: 100%;
      height: auto;
      margin-top: -90px;

    }
    .start-p-p {
      display: flex;
      margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    }
    .cont-jk-fvdcDFdvs {
      margin-top: -160px;
      box-shadow: none;
    }
    .parallax-text-c {
      margin-top: -20px;
  
    }
    .m-by-jk-package  {
      width: 110%;
    }
    .m-by-jk-container {
      width: 90%;

    }
 
    .parallax-dfvscCSSDCS {
      height: 50vh; 

    }


.parallax-text-c h2 {
  font-size: 30px;

}
.parallax-text-c p {
  font-size: 12px;
  margin: 1px 0 0;
}

.jk-see-tIDNksd {
  margin-top: 40px;
}

.m-by-jk-cont-lIbaJE {
  flex-direction: column;
  align-items: center;
  padding: 20px;

}
.m-by-jk-content-lIbaJE, .m-by-jk-image-lIbaJE {
  width: 100%;
  text-align: center;
}
.m-by-jk-content-lIbaJE {
  order: 1; 
  padding: 5px;
}
.m-by-jk-image-lIbaJE {
  order: 2; 
}
.m-by-jk-content-lIbaJE p {
  margin-top: 10px;
  font-size: 14px;
  text-align: left; 
}

.text-content h3[data-jk-translate-h-r] {
  text-align: center;
}

.m-by-jk-slideshow-container {
  height: 50vh; 
}

.m-by-jk-slide .text-content h3 {
  font-size: 25px;
}

.m-by-jk-slide .text-content p {
  font-size: 12px;
}
.blur-circle-by-jk {
  width: 300px;
  height: 500px;
}
#filter-txt-by-jk {
margin-top: 20px;

}

.img-phone-by-jk {
  width: 90%;
  margin-top: 20px;
}

#filter-txt-by-jk-1, #filter-txt-by-jk-2 {
	font-size: 40px;
  margin-top: 30px;
}

.m-by-jk-join-t-i {
  width: 90%;
}
.mrhedy-video-info { 
  width: 90%;
}

.details-d-by-jk-cvr{
  padding: 40px;
  margin-top: 20px;
}
.details-d-by-jk-cvr{
  margin-bottom: 10px;
}
.details-d-by-jk-tab-content-container p {
  font-size: 16px;
}
.m-by-jk-52343-article {
  font-size: 4vmin;
  background: white;
  padding: 2em 2em 2em 3em;
  width: 75vmin;
  height: 600px;
  margin: 0 auto; 
  background: 
    radial-gradient(circle at 0.4em 50%, #000 0.125em, #0000 0.135em) 0 0 / 100% 3vmin repeat-y,
    linear-gradient(90deg, #0000 2.35em, #fbb 0 2.4em, #0000 0),
    repeating-linear-gradient(#0000 0 5%, #99f 0 5.1%) 100% 50% / calc(100% - 2.35em) 82% no-repeat,
    #eee;
  border-radius: 0.05em;
  box-shadow: 
    0.1em 0.1em #ddd,
    0.065em 0.05em #fff,
    0.15em 0.15em #bbb,
    0.125em 0 0 0.15em #333,
    0.25em 0.125em 0 0.15em #000;
  transform: rotate(3deg) translate(5%, 5%);
  transform-origin: 10% 10%;
  position: relative;
  filter: drop-shadow(-0.25vmin 0.1em 0.35vmin #0002) drop-shadow(1vmin 0 1vmin #0003);
  text-align: left;
  margin-bottom: 90px;
  margin-top: 10px;
}

.background-black-b {
  padding:10px; 

}

}


@media (max-width: 600px) {
  .m-by-jk-52343-article {
    font-size: 4vmin;
    background: white;
    padding: 2em 2em 2em 3em;
    width: 75vmin;
    height: 400px;
    margin: 0 auto; 
    background: 
      radial-gradient(circle at 0.4em 50%, #000 0.125em, #0000 0.135em) 0 0 / 100% 3vmin repeat-y,
      linear-gradient(90deg, #0000 2.35em, #fbb 0 2.4em, #0000 0),
      repeating-linear-gradient(#0000 0 4vmin, #99f 0 4.2vmin) 100% 50% / calc(100% - 2.35em) 82% no-repeat,
      #eee;
    border-radius: 0.05em;
    box-shadow: 
      0.1em 0.1em #ddd,
      0.065em 0.05em #fff,
      0.15em 0.15em #bbb,
      0.125em 0 0 0.15em #333,
      0.25em 0.125em 0 0.15em #000;
    transform: rotate(3deg) translate(5%, 5%);
    transform-origin: 10% 10%;
    position: relative;
    filter: drop-shadow(-0.25vmin 0.1em 0.35vmin #0002) drop-shadow(1vmin 0 1vmin #0003);
    text-align: left;
    margin-bottom: 90px;
    margin-top: 10px;
  }
}

