@font-face {
	font-family: Yekan Bakh;
	font-style: normal;
	font-weight: normal;
	font-stretch: normal;
	src: url('woff/YekanBakh-Regular.woff') format('woff'),   
	url('woff2/YekanBakh-Regular.woff2') format('woff2');		 
}

@font-face {
	font-family: Yekan Bakh;
	font-style: normal;
	font-weight: 600;
	font-stretch: normal;
	src: url('woff/YekanBakh-SemiBold.woff') format('woff'),   
	url('woff2/YekanBakh-SemiBold.woff2') format('woff2');		 
}

@font-face {
	font-family: Yekan Bakh;
	font-style: normal;
	font-weight: bold;
	font-stretch: normal;
	src: url('woff/YekanBakh-Bold.woff') format('woff'),   
	url('woff2/YekanBakh-Bold.woff2') format('woff2'); 
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Yekan Bakh", sans-serif;
  background-color: #ffffff;
  direction: rtl;
  text-align: center;
}
a{
  text-decoration: none;
}
.ltr{
  direction: ltr;
}
.container {
  max-width: 450px;
  margin: 0 auto;
  padding: 0 16px;
}

.cover-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.cover-image {
  max-height: 150px;
    color: white;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    width: 100%;
    border-radius: 50% / 0px 0px 100% 100%;
}


.logo-image {
  width: 100px;
    height: 100px;
    background: white;
    z-index: 5;
    border: 1px solid grey;
    object-fit: contain;
    border-radius: 100%;
    margin-top: 95px;
}

.brand-info {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  margin-bottom: 10px;
}

.brand-name {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.brand-category {
  font-size: 14px;
  color: #777;
}

.block-divider{
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px !important;
    margin-bottom: 22px;
}
.block-divider > div:nth-child(1){
    background: linear-gradient(0deg, black 0, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, black 0, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 1px;
}
.block-divider > div:nth-child(2){
    height: 16px;
    margin: 1rem;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    width: 26px;
    font-size: 10px;
}
.block-divider > div:nth-child(3){
  background: linear-gradient(180deg, black 0, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(180deg, black 0, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    height: 1px;
}
.block-divider > div svg{
  fill: #949494;
    padding-top: 3px;
}
.button {
  background-color: #00000008;
    border: 1px solid #0000001f;
    color: #000000;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin-bottom: 15px;
  text-decoration: none;
  font-size: 14px;
}

.icon {
  font-size: 20px;
  color: #937D4D;
  margin-left: 8px;
}


.title {
  font-weight: bold;
  font-size: 15px;
  margin: 0;
}

.value,
.description {
  font-size: 13px;
  margin: 0;
  color: #777;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.social-btn {
  flex: 1;
  background-color: #F3F0F0;
  border: 1px solid #F3F0F0;
  border-radius: 15px;
  padding: 10px;
  cursor: pointer;
  color: #937D4D;
  font-size: 20px;
}

.ai-button {
  justify-content: center;
  gap: 10px;
  background: #000;
    color: #fff;
    padding: 20px;
    cursor: pointer;
}
.ai-button svg{
  fill: #fff;
  font-size: 18px;
}
.ai-button span.svg-container{
  font-size: 25px;
}
.link-button {
  flex-direction: row;
  text-align: right;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.link-button > span.svg-container{
  font-size: 30px;
}
span.svg-container{
    width: 1em;
    height: 1em;
}
.link-button > span.blink{
  content: "";
    display: block;
    width: 2rem;
    height: 100%;
    background: #fff;
    opacity: .9;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 1;
    transform: rotate(25deg) scale(2);
    animation: animation-blink 3s linear 0s infinite normal;
}
@keyframes animation-blink {
    0% {
        left: -100%
    }

    20%,to {
        left: 100%;
        margin-left: 5rem
    }
}

.social-icons .instagram-link{
  background: #833ab4;
    background: linear-gradient(to left, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border: none;
}
.social-icons .telegram-link{
  background-color: #24A1DE;
    border: none;
    color: #fff;
}
.social-icons .svg-container svg{
  fill: #fff;
}
.social-icons .description{
  color: #fff;
}
p.copyright {
    font-size: 12px;
    color: #000000a3;
}