@font-face {
    font-family: "vazir";
    src: url(../Fonts/Vazir.eot),
    url(../Fonts/Vazir.ttf),
    url(../Fonts/Vazir.woff),
    url(../Fonts/Vazir.woff2);
  }
  
  @font-face {
    font-family: "shabnam";
    src: url(../Fonts/Shabnam-Bold.eot),
    url(../Fonts/Shabnam-Bold.ttf),
    url(../Fonts/Shabnam-Bold.woff),
    url(../Fonts/Shabnam-Bold.woff2);
  }
  @font-face {
    font-family: "modam";
    font-weight: bold;
    src: url(../Fonts/Modam-Medium.eot),
    url(../Fonts/Modam-Medium.svg),
    url(../Fonts/Modam-Medium.ttf),
    url(../Fonts/Modam-Medium.woff),
    url(../Fonts/Modam-Medium.woff);
  }
  @font-face {
    font-family: "b_modam";
    font-weight: bold;
    src: url(../Fonts/Modam-ExtraBold.eot),
    url(../Fonts/Modam-ExtraBold.svg),
    url(../Fonts/Modam-ExtraBold.ttf),
    url(../Fonts/Modam-ExtraBold.woff),
    url(../Fonts/Modam-ExtraBold.woff2);
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #C0C0C0;
    overflow-x: hidden;
}
.first_page{
    text-align: center;
    margin-top: 2%;
}
.first_page h1{
    font-family: "b_modam";
}
.first_page p{
    font-family: "shabnam";
    margin-top: 1%;
}

.container_about_us{
    margin-bottom: 3%;
}
.img_about_us{
    width: 300px;
    height: 300px;
    border-radius: 10px;
}
.about_us_p{
    font-family: "vazir";
    text-align: justify;
    margin-top: 5%;
}
.row{
    align-items: center;
    justify-content: center;

}
.vector{
    mix-blend-mode: multiply;
    animation: move-left-right 2s infinite ease-in-out;
}
.vector1{
  mix-blend-mode: darken;
  animation: move-left-right 2s infinite ease-in-out;
}
.div_about_us_p{
  background-color: #2b6a81;
  color: white;
  padding: 0.5% 3% 0.5% 3%;
  border-radius: 7px;
  margin-top: 2%;
  margin-bottom: 2%;
}
@keyframes move-left-right {
    0%, 100% {
      transform: translateX(0); /* موقعیت اولیه */
    }
    50% {
      transform: translateX(20px); /* حرکت به سمت راست */
    }
  }

  @media screen and (max-width: 768px) {
    .vector{
        animation: none;
    }
    .vector1{
      animation: none;
  }
    .col{
      flex-wrap: wrap;
      flex: 1 1 100% !important;
     }
  }
  .img_first img{
    width: 60%;
    height: 10%;
    border-radius: 10px; 
    
  }
  .img_first{
    align-items: center !important;
    justify-content: center !important;
    display: flex;
  }