* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: "Mikhak";
  src: url("../fonts/Mikhak-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mikhak-DS1-FD";
  src: url("../fonts/Mikhak-DS1-FD-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mikhak";
  src: url("../fonts/Mikhak-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mikhak";
  src: url("../fonts/Mikhak-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Mikhak";
}

.container-my {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1400px;
  margin: auto;
  width: 100%;
}

.my-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.my-row > * {
  padding-left: 20px;
  padding-right: 20px;
}

header {
  position: relative;
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
header .head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
header .head .mobile-menu-btn {
  padding: 20px 20px 20px 20px;
  border: none;
  background: transparent;
}
header .head .mobile-menu-btn .bar {
  font-size: 55px;
}
header .head .logo {
  width: 100px;
  height: auto;
}
header .head nav .mu {
  list-style-type: none;
  display: flex;
  gap: 50px;
  margin-bottom: 5px;
}
header .head nav .mu .dokme-none .dokme {
  color: #ffffff;
  text-decoration: none;
  background-color: #90A3F5;
  padding: 10px 15px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 10px;
  transition: 0.5s;
}
header .head nav .mu .dokme-none:hover .dokme {
  background-color: #515e97;
}
header .head nav .mu .dokme-none.has-menu {
  position: relative;
}
header .head nav .mu .dokme-none.has-menu ul {
  margin-bottom: 0rem;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #90A3F5;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: translateY(20px);
  border-radius: 10px;
}
header .head nav .mu .dokme-none.has-menu ul li {
  margin-bottom: 10px;
  list-style-type: none;
  margin-top: 5px;
}
header .head nav .mu .dokme-none.has-menu ul li a {
  color: #ffffff;
  text-decoration: none;
}
header .head nav .mu .dokme-none.has-menu ul li:last-child {
  margin-bottom: 0px;
}
header .head nav .mu .dokme-none.has-menu:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
header .head nav .mu .mega-menu .mega-ul {
  position: absolute;
  background-color: #172760;
  top: 100%;
  width: 100%;
  right: 0;
  border-radius: 0px 0px 15px 15px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
header .head nav .mu .mega-menu .mega-ul li {
  display: flex;
  padding: 0.75rem;
  flex-direction: column;
  flex: 1;
}
header .head nav .mu .mega-menu .mega-ul li span {
  font-weight: bold;
  color: #fff;
  padding-right: 0.5rem;
  border-right: solid #0099DC;
  padding-bottom: 1rem;
}
header .head nav .mu .mega-menu .mega-ul li a {
  padding-bottom: 0.4rem;
  color: #fff;
  transition: 0.5s;
  text-decoration: none;
  padding-right: 1rem;
}
header .head nav .mu .mega-menu .mega-ul li a:hover {
  color: #0099DC;
}
header .head nav .mu .mega-menu:hover > ul {
  visibility: visible;
  opacity: 1;
}
header .head .bar {
  font-size: 40px;
  color: #0099DC;
  display: none;
}

.sidebar {
  position: fixed;
  top: 0;
  height: 100%;
  width: 40%;
  background-color: #172760;
  z-index: 5;
  transition: 0.25s;
  right: -281px;
  visibility: hidden;
  border-radius: 15px 0px 0px 15px;
}
.sidebar .img-bar {
  text-align: center;
  padding-top: 20px;
}
.sidebar .img-bar img {
  border-radius: 50%;
}
.sidebar ul {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
  margin-top: 50px;
}
.sidebar ul li {
  line-height: 50px;
}
.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

.sidebar.show {
  right: 0;
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 5;
  transition: 0.35s;
  visibility: hidden;
  opacity: 0;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1000px) {
  header .head .bar {
    display: block;
  }
  header .head nav .mu {
    display: none;
  }
}
.intro {
  background-image: url(../img/backgrandimg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #4362D2;
  padding-bottom: 130px;
  padding-top: 130px;
}
.intro .blu-intro {
  align-items: center;
  display: flex;
}
.intro .blu-intro h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}
.intro .blu-intro h1 {
  color: #ffffff;
  font-size: 67px;
  font-weight: bold;
  padding-bottom: 80px;
}
.intro .blu-intro .black-btn {
  color: #ffffff;
  text-decoration: none;
  margin-left: 15px;
  background-color: #172760;
  padding: 12px 30px 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.5s;
}
.intro .blu-intro .black-btn:hover {
  background-color: #ffffff;
  color: #172760;
}
.intro .blu-intro .none-btn {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
  font-weight: bold;
}
.intro .blu-intro .none-btn .camera {
  padding-left: 3px;
}
.intro .blu-intro img {
  width: 780px;
  height: 650px;
  padding-right: 10px;
}

@media (max-width: 1141px) {
  .intro .blu-intro {
    text-align: center;
    display: block;
  }
  .intro .blu-intro .titiel-intro {
    margin-bottom: 100px;
  }
}
@media (max-width: 578px) {
  .intro .blu-intro {
    text-align: center;
    display: block;
  }
  .intro .blu-intro .titiel-intro {
    margin-bottom: 100px;
  }
  .intro .blu-intro img {
    width: 600px;
    height: 400px;
  }
}
@media (max-width: 360px) {
  .intro .blu-intro {
    text-align: center;
    display: block;
  }
  .intro .blu-intro .titiel-intro {
    margin-bottom: 100px;
  }
  .intro .blu-intro img {
    width: 500px;
    height: 300px;
  }
  .intro .blu-intro .black-btn {
    margin-bottom: 50px;
    display: inline-block;
  }
  .intro .blu-intro .none-btn {
    display: block;
    text-align: center;
    justify-content: center;
    margin: auto;
  }
}
.card-intro {
  background-color: #EEF0F8;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 100px;
}
.card-intro .card-intro-text {
  color: #172760;
  font-weight: bold;
  font-size: 50px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.card-intro .card-titel {
  color: #484A51;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 50px;
}
.card-intro .container-my {
  justify-content: center;
}
.card-intro .row {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card-intro .cards-mam {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.card-intro .cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 520px;
  height: 350px;
  padding: 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.card-intro .cards img {
  width: 200px;
  height: 250px;
  border-radius: 15px;
  margin-left: 15px;
  transition: transform 0.8s ease-in-out;
}
.card-intro .cards img:hover {
  transform: scale(1.1);
}
.card-intro .cards .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding-right: 15px;
}
.card-intro .cards .text h3 {
  font-size: 18px;
  color: #198754;
  font-weight: bold;
  margin-bottom: 20px;
}
.card-intro .cards .text h2 {
  font-size: 22px;
  color: #172760;
  font-weight: bold;
  margin-bottom: 10px;
}
.card-intro .cards .text ul {
  padding: 0;
}
.card-intro .cards .text ul li {
  margin-right: 10px;
  line-height: 35px;
}
.card-intro .cards .text ul li::marker {
  color: #dc3545;
  font-size: 18px;
}

@media (max-width: 555px) {
  .card-intro .cards {
    width: 413px;
    height: 312px;
  }
}
@media (max-width: 440px) {
  .card-intro .cards {
    display: inline-block;
    height: 500px;
  }
  .card-intro .cards .text {
    text-align: center;
  }
  .card-intro .cards .text li ul::marker {
    display: none;
  }
}
.boxing {
  padding-top: 100px;
  padding-bottom: 100px;
}
.boxing .box-titel {
  color: #172760;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  font-size: 50px;
}
.boxing .box-text {
  color: #484A51;
  font-weight: bold;
  text-align: center;
  margin-bottom: 100px;
}
.boxing .my-row {
  align-items: stretch;
  row-gap: 20px;
}
.boxing .my-row .box {
  height: 100%;
  min-height: 250px;
  padding: 30px 25px 30px 25px;
  text-align: center;
  border: solid 1px #E9EBEF;
  border-radius: 10px;
  transition: 0.3s;
}
.boxing .my-row .box:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
.boxing .my-row .box .icons {
  font-size: 50px;
  margin-bottom: 20px;
  color: #0D6EFD;
}
.boxing .my-row .box h4 {
  color: #172760;
  font-weight: bold;
}
.boxing .my-row .box p {
  color: #484A51;
  font-weight: bold;
}

.about-section {
  background-color: #EEF0F8;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-section .about {
  align-items: center;
  gap: 50px;
  margin: auto;
  justify-content: space-between;
  display: flex;
}
.about-section .about .about-text h2 {
  font-size: 50px;
  font-weight: bold;
}
.about-section .about .about-text p {
  font-size: 20px;
  font-weight: bold;
}
.about-section .about .about-text a {
  font-weight: bold;
  padding: 12px 29px 12px 29px;
  font-size: 14px;
  border-radius: 6px;
  color: #fff;
  background-color: #172760;
  text-decoration: none;
  transition: 0.5s;
  margin-top: 50px;
  display: inline-block;
}
.about-section .about .about-text a:hover {
  color: #484A51;
  background-color: #fff;
}
.about-section .about .img-about img {
  height: 580px;
  width: 590px;
}

@media (max-width: 770px) {
  .about-section .about {
    display: block;
    text-align: center;
  }
}
.about-command {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-command h2 {
  text-align: center;
  color: #172760;
  font-size: 50px;
  font-weight: bold;
}
.about-command h3 {
  text-align: center;
  font-weight: bold;
  color: #484A51;
  font-size: 20px;
  margin-bottom: 50px;
}
.about-command .my-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-command .my-row .box-command {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  width: 30%;
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 800px) {
  .about-command .my-row .box-command {
    width: 45%;
  }
}
@media (max-width: 450px) {
  .about-command .my-row .box-command {
    width: 100%;
  }
}
.about-command .my-row .box-command .command {
  margin: auto;
}
.about-command .my-row .box-command .command .head-box {
  position: relative;
}
.about-command .my-row .box-command .command .head-box .about1-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0px 0px;
}
.about-command .my-row .box-command .command .head-box span {
  position: absolute;
  background-color: #28a745;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  top: 10px;
  left: 270px;
  color: #fff;
  width: 35%;
}
.about-command .my-row .box-command .command .head-box .avatar {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  transform: translateY(-50%);
  margin-right: 20px;
}
.about-command .my-row .box-command .box-body {
  padding: 20px;
  text-align: center;
}
.about-command .my-row .box-command .box-body h3 {
  margin-bottom: 25px;
}
.about-command .my-row .box-command .box-body p {
  font-size: 14px;
  margin-bottom: 25px;
}
.about-command .my-row .box-command .box-body a {
  margin-bottom: 25px;
  display: inline-block;
  color: #28a745;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.about-command .my-row .box-command .tarikh {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 10px;
}
.about-command .matlab {
  margin-top: 50px;
  text-align: center;
  align-items: center;
}
.about-command .matlab a {
  text-decoration: none;
  color: #172760;
  font-weight: bold;
}

@media (max-width: 1373px) {
  .about-command .my-row span {
    display: none;
  }
}
.img-back .po-img {
  background-image: url(../img/back.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #EEF0F8;
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}
.img-back .po-img .noghte {
  position: absolute;
  bottom: 500px;
}
.img-back .po-img .barg {
  position: absolute;
  left: 100px;
  top: 100px;
}
.img-back .po-img .shatrangi {
  position: absolute;
  bottom: 100px;
  right: 200px;
}
.img-back .po-img .banafshe {
  position: absolute;
  bottom: 150px;
  left: 200px;
}
.img-back .po-img .color-slide {
  text-align: center;
  align-items: center;
  width: 59%;
}
.img-back .po-img .color-slide .titel-slide {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
.img-back .po-img .color-slide .titel-slide .avatar-slide {
  border-radius: 50%;
  margin-bottom: 20px;
}
.img-back .po-img .color-slide .titel-slide p {
  text-align: center;
  font-weight: bold;
  color: #172760;
}
.img-back .po-img .color-slide .titel-slide h6 {
  text-align: center;
  color: #172760;
  font-weight: bold;
}
.img-back .po-img .color-slide .titel-slide .morefi {
  text-align: center;
  color: #484A51;
  font-weight: bold;
}

footer {
  width: 100%;
  background-color: #1B47E1;
  background-image: url(../img/footer-back.png);
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}
footer .blue-footer {
  display: flex;
}
footer .blue-footer .rast {
  width: 50%;
}
footer .blue-footer .rast h6 {
  color: #999;
  font-weight: bold;
}
footer .blue-footer .rast h2 {
  font-weight: bold;
  color: #fff;
}
footer .blue-footer .kharid {
  width: 50%;
}
footer .blue-footer .kharid h4 {
  color: #fff;
}
footer .blue-footer .kharid .black-btn {
  color: #ffffff;
  text-decoration: none;
  background-color: #172760;
  padding: 12px 30px 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: 0.5s;
}
footer .blue-footer .kharid .black-btn:hover {
  background-color: #ffffff;
  color: #172760;
}

@media (max-width: 600px) {
  footer .container-my .row .blue-footer {
    display: block;
  }
  footer .container-my .row .blue-footer .rast {
    width: 100%;
    margin-bottom: 50px;
  }
  footer .container-my .row .blue-footer .kharid {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */