.ailuca-preloader {
  position: fixed;
  inset: 0;
  background: var(--preloader-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.ailuca-preloader .ailuca-logo {
  width: 5rem;
  height: 5rem;
  animation: logoPulse 2s ease-in-out infinite;
}
.ailuca-preloader .dot {
  animation: pulse 1.5s infinite ease-in-out;
}
.ailuca-preloader .dot1 {
  animation-delay: 0s;
}
.ailuca-preloader .dot2 {
  animation-delay: 0.2s;
}
.ailuca-preloader .dot3 {
  animation-delay: 0.4s;
}
.ailuca-preloader .dot4 {
  animation-delay: 0.6s;
}
@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes pulse {
  0%, 100% {
    r: 3;
    opacity: 0.5;
  }
  50% {
    r: 5;
    opacity: 1;
  }
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Vazir;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  max-width: 100%;
}

footer,
header,
main,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
  border: unset;
}

button:focus {
  outline: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.bold-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-color-theme);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  bottom: unset;
}

.stretched-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .bold-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color-theme);
  }
}
.header {
  height: 512px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: relative;
  background: var(--hero-section-bg);
}

.hero-section {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.hero-section .column-left,
.hero-section .column-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .column-left {
  width: 50%;
  justify-content: center;
  z-index: 3;
}
.hero-section .column-right {
  width: 50%;
  justify-content: flex-end;
  position: relative;
}
.hero-section .svg-pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin-left: auto;
}
.hero-section .hero-img {
  z-index: 2;
}
.hero-section .hero-img-mask {
  display: none;
}
.hero-section .hero-heading,
.hero-section .hero-heading-2 {
  padding: 0;
  margin: 0;
}
.hero-section .hero-title,
.hero-section .hero-title-2 {
  display: flex;
  align-items: center;
  color: var(--text-color-theme);
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.hero-section .hero-title,
.hero-section .hero-heading {
  font-size: 2rem;
  font-weight: 900;
}
.hero-section .hero-title-2,
.hero-section .hero-heading-2 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 3rem;
}
.hero-section .hero-heading-2 {
  color: var(--info-color);
}
.hero-section .hero-description {
  font-weight: 500;
  font-size: 1rem;
  max-width: 17.9rem;
  line-height: 1.5rem;
  color: var(--text-color-theme);
}

@media (max-width: 991.98px) {
  .header {
    height: auto;
  }
  .svg-pattern {
    display: none;
  }
  .hero-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-section .column-right,
  .hero-section .column-left {
    width: 100%;
  }
  .hero-section .hero-img {
    position: relative;
    margin-top: 5.375rem;
    padding: 1.5rem 0;
  }
  .hero-section .hero-img-mask {
    display: flex;
    position: absolute;
    top: 0;
    left: 0rem;
    bottom: 0;
    right: 0;
    z-index: -2;
    width: 100%;
    height: 90%;
    opacity: 30%;
    border-radius: 3.125rem;
    background: var(--hero-mask-bg);
  }
  .hero-section .column-left {
    margin-top: 1rem;
  }
  .hero-section .hero-title,
  .hero-section .hero-heading {
    font-size: 1.25rem;
  }
  .hero-section .hero-text {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 0.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-section .hero-description {
    text-align: center;
  }
}
.navbar {
  width: 100%;
  background: var(--navbar-bg-color);
  z-index: 4;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  height: 4rem;
  align-items: center;
  padding: 0 0.75rem;
  top: 2rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transition: all 0.5s;
}
.navbar .navbar-nav {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .nav-item .nav-link {
  padding: 0.25rem 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
}

.social-network {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.navbar-container {
  width: 80%;
  margin: auto;
  position: absolute;
  display: flex;
  justify-content: center;
  top: 2rem;
  left: 0;
  right: 0;
  bottom: 0;
}

#navbar-toggler {
  display: none;
}

@media (max-width: 1384.98px) and (min-width: 991.98px) {
  .navbar-container {
    width: 100%;
    padding: 0 1rem;
  }
  .navbar {
    width: 100%;
  }
  .navbar .nav-item .nav-link {
    font-size: 0.625rem;
  }
}
@media (max-width: 991.98px) {
  .navbar-container {
    position: static;
  }
  .navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .navbar .navbar-nav {
    flex-direction: column;
    margin: auto 0;
    align-items: center;
    row-gap: 0.5rem;
  }
  .navbar.show {
    display: flex;
    animation: fade-in-bounce 1s ease-in;
  }
  #navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary-color);
    border: none;
    width: 3.125rem;
    height: 3.125rem;
    color: var(--color-white);
    border-radius: 0.75rem;
    margin-left: auto;
    z-index: 1000;
  }
  .social-network {
    justify-content: flex-end;
    margin-bottom: 2rem;
  }
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  padding: 0.75rem 1rem;
  outline: unset;
  border: unset;
  cursor: pointer;
}

.social-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
}
.social-link-btn .icon {
  font-weight: 400;
  font-size: 1rem;
}

.btn-swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 0.75rem;
  width: 3.125rem;
  height: 3.125rem;
  outline: none;
  border: none;
}
.btn-swiper .btn-swiper-icon {
  color: var(--color-white);
  font-size: 1rem;
}
.btn-swiper:hover {
  cursor: pointer;
  color: var(--color-white);
  background: var(--secondary-hover);
}
.btn-swiper:active {
  background: var(--secondary-active);
}
.btn-swiper:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background: var(--secondary-disable);
}
.btn-swiper.disable {
  cursor: not-allowed;
  opacity: 0.5;
  background: var(--secondary-disable);
}
.btn-swiper.active {
  background: var(--secondary-active);
}

.btn-primary {
  background-color: var(--social-btn-bg);
  color: var(--color-white);
}
.btn-primary:hover {
  color: var(--color-white);
  background: var(--primary-hover);
}
.btn-primary:active {
  background: var(--primary-active);
}
.btn-primary.disable {
  cursor: not-allowed;
  background: var(--primary-disable);
}
.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--primary-disable);
}
.btn-primary.active {
  background: var(--primary-active);
}

.btn-white {
  background: var(--color-white);
  color: var(--primary-color);
}
.btn-white:hover {
  color: var(--primary-color);
  background: var(--btn-white-hover);
}
.btn-white:active {
  background: var(--btn-white-active);
}
.btn-white.disable {
  cursor: not-allowed;
  background: var(--btn-white-disable);
}
.btn-white:disabled {
  cursor: not-allowed;
  background: var(--btn-white-disable);
}

.btn-dark {
  background-color: var(--quaternary-color);
  color: var(--color-white);
}
.btn-dark:hover {
  color: var(--color-white);
  background: var(--btn-dark-hove);
}
.btn-dark:active {
  background: var(--btn-dark-active);
}
.btn-dark.active {
  background: var(--btn-dark-active);
}
.btn-dark.disable {
  cursor: not-allowed;
  background: var(--btn-dark-disable);
}
.btn-dark:disabled {
  cursor: not-allowed;
  background: var(--btn-dark-disable);
}

@media (max-width: 991.98px) {
  .btn-primary {
    background-color: var(--color-white);
  }
  .btn-primary .icon {
    color: var(--social-btn-bg);
  }
  .btn-primary:hover {
    color: var(--primary-color);
    background: var(--btn-white-hover);
  }
  .btn-primary:active {
    background: var(--btn-white-active);
  }
  .btn-primary.disable {
    cursor: not-allowed;
    background: var(--btn-white-disable);
  }
  .btn-white {
    background: var(--color-white);
    color: var(--primary-color);
  }
  .btn-white:hover {
    color: var(--primary-color);
    background: var(--btn-white-hover);
  }
  .btn-white:active {
    background: var(--btn-white-active);
  }
  .btn-white.disable {
    cursor: not-allowed;
    background: var(--btn-white-disable);
  }
  .btn-swiper {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
  }
  .btn-swiper .btn-swiper-icon {
    font-size: 0.75rem;
  }
}
.portfolio {
  max-width: var(--container-size);
}
.portfolio .swiper-wrapper {
  padding: 1rem 0;
}

.portfolio-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  flex-wrap: wrap;
}
.portfolio-container .portfolio-title {
  margin: 0 auto;
}

.portfolio-btn-container {
  position: relative;
  top: 0;
  left: 0.25rem;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

@media (max-width: 991.98px) {
  .portfolio {
    width: 100%;
    padding: 0 2.3125rem !important;
  }
  .portfolio-container {
    width: 100%;
    margin-top: 1rem;
  }
  .portfolio-container .btn-swiper {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
  }
  .portfolio-title {
    margin: 0 !important;
  }
}
@media (max-width: 375.98px) {
  .portfolio-btn-container {
    margin: auto;
  }
}
.portfolio-item {
  width: 18.75rem;
  height: 17.1875rem;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: var(--portfolio-item-bg);
  position: relative;
}
.portfolio-item .portfolio-img-container {
  height: 11.125rem;
}
.portfolio-item:hover .portfolio-item-badge {
  background-color: var(--secondary-hover);
}
.portfolio-item:active .portfolio-item-badge {
  background-color: var(--secondary-active);
}

.portfolio-item-img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
}

.portfolio-item-title {
  margin: 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-color-theme);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-item-badge {
  background-color: var(--portfolio-item-badge-bg);
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  display: inline-block;
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .portfolio-item {
    max-width: 100%;
    margin: auto;
    margin-top: 1rem;
  }
}
.portfolio-archive {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.portfolio-item-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  width: 100%;
}

.portfolio-item {
  margin-top: 0;
  min-height: 17.1875rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  margin: 1rem 0;
}

.page-link {
  width: 2.5rem;
  height: 2.5rem;
}

.pagination-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
}
.pagination-btn .icon {
  font-weight: 400;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .pagination .btn-primary {
    background-color: var(--social-btn-bg);
    color: var(--color-white);
  }
  .pagination .btn-primary:hover {
    color: var(--color-white);
    background: var(--primary-hover);
  }
  .pagination .btn-primary:active {
    background: var(--primary-active);
  }
  .pagination .btn-primary.disable {
    cursor: not-allowed;
    opacity: 0.5;
    background: var(--primary-disable);
  }
}
.footer {
  margin-top: auto;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.3125rem;
  padding: 2rem;
}

.footer-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-content {
  width: 70%;
  z-index: 1;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content-text {
  display: flex;
  justify-content: flex-start;
}

.footer-content-copyright {
  font-weight: 400;
  font-size: 0.75rem;
}

.footer-content-social {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count: infinite;
}

.gooeff {
  filter: url(#goo);
}

@keyframes wave {
  to {
    transform: translateX(-100%);
  }
}
@media (max-width: 991.98px) {
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .footer-content-text {
    margin-top: 0.875rem;
  }
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-Thin.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-ExtraLight.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-Light.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-Regular.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-Medium.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-SemiBold.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-Bold.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-ExtraBold.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazirmatn-FD-Black.woff2") format("woff2"), url("../fonts/Vazirmatn-FD-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@media (max-width: 991.98px) {
  .portfolio-title {
    margin: auto !important;
  }
}/*# sourceMappingURL=porfolio-archive-layout1.css.map */