@font-face {
  font-family: 'myfont';
  src: url('../../fonts/Yekan.eot');
  src: url('../../fonts/Yekan.eot?#iefix') format('embedded-opentype'),
       url('../../fonts/vasir.woff2') format('woff2'),
       url('../../fonts/Yekan.woff') format('woff'),
       url('../../fonts/vasir.ttf')  format('truetype'),
       url('../../fonts/Yekan.svg#svgFontName') format('svg');
}

* {
  font-family: 'myfont' , sans-serif;
  font-feature-settings: 'lnum' 1;
  font-weight: 400;
  direction: rtl;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 15px;
}

.home-div-bbtsh{
    overflow: hidden !important;
}

.no-scroll-main{
  overflow: hidden !important;
}

.hero-video {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: #082f54e0;
  pointer-events: none;
}

.div-logo-home{
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  justify-content: center;
}

.main-div-head{
  width: 100%;
  position: fixed;
  display: flex;
  top: 0 !important;
  z-index: 9000;
  justify-content: center;
  align-items: center;
}

.div-org-head{
  width: 90%;
  box-shadow: 0px 0px 50px #00000040;
  background: #ffffff;
  display: flex !important;
  z-index: 9999 !important;
  margin-top: 20px !important;
  border-radius: 10000px !important;
  padding-top: 5px;
  padding-bottom: 5px;
}

.img-logo-home{
  width: 350px !important;
  z-index: 9999 !important;
}

.img-logo-head{
  width: 100%;
}

.div-ch-head-main1{
  flex: 1;
  display: flex;
  justify-content: right;
  padding-right: 5px;
  align-items: center;
}

.div-ch-head-main2{
  width: 250px;
  display: flex;
  align-items: center;
}

.div-ch-head-main3{
  flex: 1;
  display: flex;
  justify-content: left;
  padding-left: 5px;
  align-items: center;
}

.customer-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffff;
  background-color: #082F54;
  border-radius: 1000px;
  text-decoration: none;
  padding: 0px 15px;
  font-size: 15px;
  height: 45px !important;
}

.customer-menu-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffff;
  background-color: #082F54;
  border-radius: 1000px;
  text-decoration: none;
  font-size: 15px;
  height: 45px !important;
  justify-content: center;
  width: 45px !important;
}

.icon-user-head {
  width: 30px;
  height: 30px;
  color: rgb(255,193,50);
}

#mySphere {
  right: -20em !important;
  width: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
}

canvas {
  display: block;
}

.m-right{
  margin-right: 5px !important;
}

.home-footer{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px !important;
}

.line-news {
  width: 90%;
  height: 40px;
  background-color: #ffffff;
  border-radius: 1000px !important;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 6px;
  direction: ltr;
  display: flex;
  align-items: center;
}

.line-track {
  display: inline-block;
  white-space: nowrap;
  animation: tickerMove 50s linear infinite;
}

.line-item {
  display: inline-flex;
  align-items: center;
  margin: 0 60px;
  font-size: 14px;
  color: #082F54;
}

.line-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: orange;
  margin-left: 6px;
  animation: pulse 1.5s infinite;
}

@keyframes tickerMove {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@keyframes pulse {
  0%   { transform: scale(1); background: orange; }
  50%  { transform: scale(1.4); background: #22c55e; }
  100% { transform: scale(1); background: orange; }
}

@media (max-width: 768px) {
  .line-item { margin: 0 15px; font-size: 12px; }
  .line-dot { width: 5px; height: 5px; }
}