:root{
    --main-color: #18D9E8;
    --supplementary: #10c4d1;
}
.title{
    font-size: 33px;
    color: var(--main-color);
    display: flex !;
}
body
{
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    var(--main-color) 67%,
    var(--supplementary) 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.m-f{
  font-size: 11px;
}
.m-txt{
    color: rgb(0, 146, 7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    margin: 0 auto;
}
.cta{
    margin-bottom: 30px;
}
.product-paage{
  width: 100%;
  height: 100vh;
  overflow: scroll;
}
.m-card{
  border: 1px solid var(--main-color);
  border-radius: 5px;
}

#customers {
  border-collapse: collapse;
  width: 100%;
}

#customers td,
#customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even) {
  background-color: #f2f2f2;
}
#customers tr:nth-child(odd) {
  background-color: #b6b5b5;
}


#customers tr:hover {
  background-color: #ddd;
}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: var(--main-color);
  color: white;
}
.m-baner{
  margin-top: 60px;
}
.m-border{
  border-radius: 20px;
}
.lang{
  position: absolute;
  top: 40px;
  left: 60px;
}
.m-size{
  width: 80%;
  margin: 0 auto 100px auto;
}
.imgOrgani{
  width: 200px;
  height: 100px;
}
.section-title span{
  color: #18D9E8 !important;
}
@media (max-width: 370px){
  .copyright{
   display: none;
   visibility: hidden;
  }
}
@media (max-width: 768px){
  .banner .banner-txt p{
   display: none !important;
   visibility: hidden !important;
  }
}

/* floating btn */
.my-floating-menu {
  z-index: 100;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  visibility: hidden;
}

#my-toggleMenuBtn {
  background-image: linear-gradient(
    -225deg,
    var(--main-color) 67%,
    var(--supplementary) 100%
  );
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.texti{
  font-size: 12px;
}
.my-menu-content {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #fff; /* رنگ پس زمینه منو */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.my-menu-content a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
}

.my-menu-content a:hover {
  background-color: #dad9d9;
}

.my-menu-content.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 480px){
  .my-floating-menu{
   display: block !important;
   visibility: visible !important;
  }
}
.maps{
  display: flex;
  justify-content: center;
  width: 40%;
  height: auto;
  margin: 30px auto 70px auto;
}
.oneMap{
  width: 97%;
  height: 100%;
  text-align: center;
}
.titleMap{
  font-size: 20px;
}
@media (max-width: 1600px){
  .maps{
    display: block;
    width: 100%;
  }
} 
