@charset "UTF-8";
@font-face {
  font-family: "Rokh-Bold";
  src: url("../fonts/rokh/eot/RokhFaNum-Bold.eot") format("embedded-opentype"), url("../fonts/rokh/woff2/RokhFaNum-Bold.woff2") format("woff"), url("../fonts/rokh/ttf/RokhFaNum-Bold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Rokh-Medium";
  src: url("../fonts/rokh/eot/RokhFaNum-Medium.eot") format("embedded-opentype"), url("../fonts/rokh/woff2/RokhFaNum-Medium.woff2") format("woff"), url("../fonts/rokh/ttf/RokhFaNum-Medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Rokh-Light";
  src: url("../fonts/rokh/eot/RokhFaNum-Light.eot") format("embedded-opentype"), url("../fonts/rokh/woff2/RokhFaNum-Light.woff2") format("woff"), url("../fonts/rokh/ttf/RokhFaNum-Light.ttf") format("truetype");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  direction: rtl;
  background-image: linear-gradient(to bottom, #2c2c2c, #000);
  min-height: 100vh;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.my-80 {
  margin: 80px 0;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.my-100 {
  margin: 100px 0;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.gap-2 {
  gap: 2px;
}

.gap-4 {
  gap: 4px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.AZ-img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.AZ-img-container::after {
  content: "";
  display: block;
}

.AZ-img-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AZ-img-cover img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.AZ-field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  background: transparent;
}
.AZ-field-group label {
  font-size: 16px;
  color: #fff;
  font-family: "Rokh-Medium";
  margin-bottom: 5px;
  transition: all 0.2s linear;
}
.AZ-field-group input, .AZ-field-group textarea {
  font-size: 18px;
  color: #ffffff;
  font-family: "Rokh-Medium";
  padding: 13px 16px;
  border: 0;
  background: red;
  flex-grow: 1;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 11px 30px 0px rgba(255, 255, 255, 0.1450980392);
  border: 2px solid rgba(255, 255, 255, 0.3843137255);
  padding: 8px 10px;
  width: 100%;
  background: #444444;
}
.AZ-field-group.err input, .AZ-field-group.err textarea {
  border: 1px solid #ED2E2E;
}
.AZ-field-group.err .err-text {
  font-size: 12px;
  color: #ED2E2E;
  font-family: "Rokh-Bold";
  margin-top: 8px;
}

.AZ-primary-btn,
.AZ-secondary-btn {
  font-size: 18px;
  color: #000;
  font-family: "Rokh-Medium";
  padding: 8px 40px 5px;
  transition: all 0.2s linear;
  border-radius: 40px;
  background: rgb(239, 185, 33);
  border: 1px solid rgb(239, 185, 33);
}
.AZ-primary-btn:hover,
.AZ-secondary-btn:hover {
  color: #FFFFFF;
  background: rgb(225, 167, 7);
}
.AZ-primary-btn span,
.AZ-secondary-btn span {
  font-size: 18px;
  padding-bottom: 5px;
}

.AZ-styled-select {
  min-width: 150px;
  min-height: 40px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3843137255);
}
.AZ-styled-select::before {
  content: "\e91e";
  font-family: "icomoon";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 17px;
  color: #FFFFFF;
}
.AZ-styled-select select {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "Rokh-Medium";
  padding: 0 10px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  height: 100%;
  width: 100%;
  padding-top: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  z-index: 1;
}
.AZ-styled-select select option {
  background: #232020;
}

.AZ-search-wrapper {
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3843137255);
  min-width: 50%;
}
.AZ-search-wrapper input {
  font-size: 16px;
  color: #fff;
  font-family: "Rokh-Medium";
  flex-grow: 1;
  border: 0;
  background: transparent;
  padding: 8px 10px 5px;
  min-width: 50px;
  height: 100%;
}
.AZ-search-wrapper input::-moz-placeholder {
  color: #7E7C7C;
}
.AZ-search-wrapper input::placeholder {
  color: #7E7C7C;
}
.AZ-search-wrapper input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none; /* حذف آیکون پیش‌فرض */
  background: url("../img/your-icon.svg") no-repeat center center;
  background-size: contain;
  width: 8px;
  height: 8px;
  cursor: pointer;
}
.AZ-search-wrapper input[type=search]::-webkit-search-cancel-button:hover {
  filter: brightness(0.8); /* تغییر رنگ هنگام هاور (اختیاری) */
}
.AZ-search-wrapper button {
  font-size: 24px;
  color: #7E7C7C;
  padding: 0 10px;
  background: transparent;
  border: 0;
  transition: all 0.2s linear;
}
.AZ-search-wrapper .search-result {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  border-radius: 0 0 8px 8px;
  padding: 30px;
  z-index: 10;
  max-height: 500px;
  overflow-y: auto;
  z-index: 1;
  border: 1px solid #4D66A0;
  background: #303F63;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
  border-top: 0;
}

.AZ-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  height: 65px;
}
.AZ-navbar.header-transparent {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: transparent;
}
.AZ-navbar .navbar {
  padding: 10px 0;
  height: 100%;
}
.AZ-navbar .navbar-toggler {
  font-size: 30px;
  color: #fff;
}
.AZ-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.AZ-navbar .offcanvas-start {
  top: 0;
  right: 0;
  width: 250px;
  background: #f5f1e5;
}
.AZ-navbar .offcanvas-start .offcanvas-header {
  background: #2e7f3d;
}
.AZ-navbar .offcanvas-start .navbar-brand img {
  width: 50px;
}
.AZ-navbar .offcanvas-start .close-canvas {
  color: #ffe8ec;
}
.AZ-navbar .navbar-brand {
  margin-left: 0;
}
.AZ-navbar .navbar-brand img {
  width: 100px;
}
.AZ-navbar .nav-link {
  padding: 8px 35px !important;
  position: relative;
  overflow: hidden;
}
.AZ-navbar .nav-link p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Rokh-Light";
  transition: all 0.2s linear;
}
.AZ-navbar .nav-link:hover p {
  color: #fff;
}

.AZ-services-section {
  padding: 80px 0;
}
.AZ-services-section .services-section-title {
  font-size: 150px;
  color: rgb(239, 185, 33);
  line-height: 1.2;
  font-family: "Rokh-Bold";
  margin-bottom: -20px;
  background: -webkit-linear-gradient(rgb(239, 185, 33), rgb(71, 54, 6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.AZ-services-section .services-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.AZ-services-section .services-item {
  font-size: 18px;
  color: #FFFFFF;
  font-family: "Rokh-Medium";
  box-shadow: 0px 11px 30px 0px rgba(255, 255, 255, 0.1450980392);
  border: 2px solid rgba(255, 255, 255, 0.3843137255);
  padding: 8px 10px;
  border-radius: 40px;
  width: 100%;
  background: #444444;
}
.AZ-services-section .services-title {
  font-size: 20px;
  color: #ffffff;
  font-family: "Rokh-Bold";
}

.AZ-blog-section {
  padding: 50px 0;
}
.AZ-blog-section .blog-section-title img {
  width: 50%;
}

.AZ-post-card {
  border-radius: 25px;
  padding: 10px;
  display: block;
  background-image: linear-gradient(-141deg, rgba(255, 255, 255, 0.355) 0%, #232020 100%);
  box-shadow: 0px 11px 30px 0px rgba(255, 255, 255, 0.1450980392);
  border: 2px solid rgba(255, 255, 255, 0.3843137255);
  width: 100%;
}
.AZ-post-card .post-card-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}
.AZ-post-card .post-card-img::after {
  padding-bottom: 100%;
}
.AZ-post-card .post-card-title {
  font-size: 20px;
  color: #ffffff;
  font-family: "Rokh-Bold";
  margin-bottom: 10px;
}
.AZ-post-card .post-card-text {
  font-size: 16px;
  color: #ffffff;
  font-family: "Rokh-Light";
}

.view-all-link {
  font-size: 20px;
  color: rgb(239, 185, 33);
  font-family: "Rokh-Light";
}

.AZ-footer {
  padding: 30px 0;
  height: 85px;
}
.AZ-footer .footer-brand img {
  width: 100px;
}

.AZ-section-text {
  font-size: 16px;
  color: rgb(254, 254, 254);
  font-family: "Rokh-Medium";
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: justify;
}

.AZ-section-title {
  font-size: 22px;
  color: rgb(254, 254, 254);
  font-family: "Rokh-Bold";
  margin-bottom: 15px;
}

.AZ-activities-section {
  height: 800px;
  position: relative;
  overflow-x: hidden;
}
.AZ-activities-section .activities-section-title {
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.AZ-activities-section .activities-section-title img {
  width: 240px;
}
.AZ-activities-section .img-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AZ-activities-section .activities-list {
  margin-right: 10px;
}
.AZ-activities-section .activities-item {
  list-style-type: disc;
}
.AZ-activities-section .activities-content {
  position: relative;
  z-index: 10;
}

.AZ-hero-section {
  overflow-x: hidden;
  height: 700px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
.AZ-hero-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.AZ-about-section {
  padding: 80px 0;
}
.AZ-about-section .about-title_EN {
  font-size: 53px;
  color: rgba(86, 102, 251, 0.2);
  font-family: "Rokh-Bold";
  display: block;
}
.AZ-about-section .about-name {
  font-size: 38px;
  color: rgb(239, 185, 33);
  font-family: "Rokh-Bold";
}
.AZ-about-section .about-title-wrapper {
  margin-bottom: -20px;
}

.bg-gradient {
  background-image: linear-gradient(to bottom, #2c2c2c, #000);
}

.AZ-post-page {
  position: relative;
  padding: 40px 0;
}
.AZ-post-page::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: linear-gradient(to left, #000, #ffffff 60%, #000);
  width: 60%;
  height: 3px;
}
.AZ-post-page .post-img {
  width: 100%;
  border-radius: 25px;
}
.AZ-post-page .post-img::after {
  padding-bottom: 80%;
}
.AZ-post-page .post-details {
  font-size: 18px;
  color: rgb(254, 254, 254);
  font-family: "Rokh-Medium";
  border-radius: 25px;
  padding: 5px 10px;
  display: block;
  background-image: linear-gradient(-141deg, rgba(255, 255, 255, 0.355) 0%, #232020 100%);
  box-shadow: 0px 11px 30px 0px rgba(255, 255, 255, 0.1450980392);
  border: 2px solid rgba(255, 255, 255, 0.3843137255);
}
.AZ-post-page .post-details span {
  width: 22px;
}

article h1, article h2, article h3, article h4 {
  font-size: 20px;
  color: rgb(254, 254, 254);
  font-family: "Rokh-Bold";
  margin-bottom: 15px;
}
article p {
  font-size: 16px;
  color: rgb(254, 254, 254);
  font-family: "Rokh-Light";
  line-height: 1.2;
}

.page-wrapper {
  height: 100vh;
  background: pink;
}

.AZ-contact-page {
  padding: 40px 0;
  height: calc(100vh - 150px);
}
.AZ-contact-page .contact-img {
  width: 80%;
}
.AZ-contact-page .contact-item {
  font-size: 50px;
  color: #ffffff;
  font-family: "Rokh-Bold";
  transition: all 0.2s linear;
}
.AZ-contact-page .contact-item:hover {
  color: rgb(239, 185, 33);
}
.AZ-contact-page .social span {
  font-size: 30px;
  color: #fff;
  transition: all 0.2s linear;
}
.AZ-contact-page .social span:hover {
  color: rgb(239, 185, 33);
}

.AZ-review-box {
  border: 1px solid rgba(255, 255, 255, 0.3843137255);
  background: transparent;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}
.AZ-review-box .spoiler-box {
  padding: 8px 16px;
  border-radius: 8px;
  background: #26324F;
}
.AZ-review-box .spoiler-box span {
  font-size: 24px;
  color: #D6DDEB;
}
.AZ-review-box .spoiler-box_title {
  font-size: 12px;
  color: #D6DDEB;
  font-family: "Rokh-Bold";
}
.AZ-review-box .spoiler-box_title span {
  font-size: 14px;
  color: #FF6C00;
}
.AZ-review-box .comment-name {
  font-size: 16px;
  color: #FFFFFF;
  font-family: "Rokh-Medium";
}
.AZ-review-box .comment-profile {
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid #43598C;
  outline: 1px solid transparent;
}
.AZ-review-box .comment-profile::after {
  padding-bottom: 100%;
}
.AZ-review-box .comment-text {
  font-size: 16px;
  color: #C2CBE1;
  font-family: "Rokh-Medium";
  margin-top: 10px;
  line-height: 140%;
  text-align: justify;
}
.AZ-review-box .comment-badge {
  font-size: 10px;
}
.AZ-review-box .commnet-name {
  color: #00E4F4;
  font-family: "Rokh-Bold";
}
.AZ-review-box .comment-date {
  font-size: 12px;
  color: #8498C4;
  font-family: "Rokh-Medium";
}
.AZ-review-box .comment-details {
  font-family: "Rokh-Bold";
  position: relative;
  padding-right: 7px;
  font-size: 12px;
  color: #5C75B0;
  display: block;
}
.AZ-review-box .comment-details::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #00C1CE;
}
.AZ-review-box .stars span {
  font-size: 12px;
  color: #FF6C00;
}
.AZ-review-box .reply-btn {
  font-size: 16px;
  color: rgb(239, 185, 33);
  font-family: "Rokh-Medium";
}
.AZ-review-box_reply {
  margin-top: 16px;
  margin-bottom: 0;
  box-shadow: 0px 11px 30px 0px rgba(255, 255, 255, 0.1450980392);
  border: 0;
  padding: 8px 10px;
  width: 100%;
  background: #444444;
}

@media screen and (max-width: 1400px) {
  .AZ-about-section {
    padding: 80px 0;
  }
  .AZ-about-section .about-title_EN {
    font-size: 48px;
    color: rgba(86, 102, 251, 0.2);
    font-family: "Rokh-Bold";
    display: block;
  }
  .AZ-about-section .about-name {
    font-size: 32px;
    color: rgb(239, 185, 33);
    font-family: "Rokh-Bold";
  }
}
@media screen and (max-width: 1200px) {
  .AZ-about-section {
    padding: 80px 0;
  }
  .AZ-about-section .about-title_EN {
    font-size: 40px;
  }
  .AZ-about-section .about-name {
    font-size: 25px;
  }
  .AZ-about-section .about-title-wrapper {
    margin-bottom: -10px;
  }
  .AZ-services-section .services-section-title {
    font-size: 120px;
  }
}
@media screen and (max-width: 991px) {
  .w-md-100 {
    width: 100%;
  }
  .AZ-navbar .navbar-brand img {
    width: 80px;
  }
  .AZ-navbar .navbar {
    padding: 15px 0;
  }
  .AZ-navbar .close-sidebar {
    padding: 5px 20px;
    color: #fff;
    font-size: 20px;
  }
  .AZ-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    background: #000;
    padding: 20px 0;
    width: 250px;
    z-index: 1000;
    transition: all 0.2s linear;
  }
  .AZ-navbar #sidebar.open {
    right: 0;
  }
  .AZ-navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .AZ-activities-section .img-bg {
    -o-object-position: -250px center;
       object-position: -250px center;
  }
  .AZ-contact-page .contact-item {
    font-size: 30px;
  }
  .AZ-contact-page .contact-img {
    width: 250px;
  }
  .AZ-contact-page .social span {
    font-size: 25px;
  }
  .AZ-about-section .about-title_EN {
    font-size: 55px;
  }
  .AZ-about-section .about-name {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .AZ-about-section .about-title_EN {
    font-size: 40px;
  }
  .AZ-about-section .about-name {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .AZ-about-section {
    padding: 40px 0;
  }
  .AZ-section-text {
    font-size: 14px;
    margin-bottom: 0;
  }
  .AZ-services-section {
    padding: 40px 0;
  }
  .AZ-services-section .services-section-title {
    font-size: 80px;
  }
  .AZ-services-section .services-title {
    font-size: 16px;
  }
  .AZ-services-section .services-item {
    font-size: 14px;
  }
  .AZ-post-card .post-card-text {
    font-size: 14px;
  }
  .AZ-post-card .post-card-title {
    font-size: 16px;
  }
  .view-all-link {
    font-size: 16px;
  }
  .AZ-post-page .post-details {
    font-size: 16px;
  }
  .AZ-post-page .post-details span {
    width: 20px;
  }
  .AZ-review-box .comment-name {
    font-size: 14px;
  }
  .AZ-review-box .comment-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .w-sm-100 {
    width: 100%;
  }
  .AZ-contact-page .social {
    font-size: 20px;
  }
  .AZ-contact-page .contact-item {
    font-size: 22px;
  }
  .AZ-blog-section .blog-section-title img {
    width: 100%;
  }
  .AZ-hero-section {
    height: 400px;
  }
  .AZ-hero-section img {
    -o-object-position: -220px center;
       object-position: -220px center;
  }
  .AZ-activities-section .activities-section-title img {
    width: 150px;
  }
  .AZ-about-section .about-title_EN {
    font-size: 28px;
  }
  .AZ-about-section .about-name {
    font-size: 20px;
  }
  .AZ-about-section .about-title-wrapper {
    margin-bottom: unset;
  }
}