@import "../css/bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
  color: #000;
  font-size: 14px;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #000;
}

button {
  background: transparent;
  border: none;
}

.layout {
  min-height: 100vb;
  background: #f0d0b4;
}
.layout .content .img img {
  width: 100%;
}

.container_ {
  padding: 0px 200px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .container_ {
    padding: 0px 100px;
  }
}
@media (max-width: 991px) {
  .container_ {
    padding: 0px 50px;
  }
}
@media (max-width: 870px) {
  .container_ {
    padding: 0px 20px;
  }
}

.flex {
  display: flex;
}

.flexBetween {
  display: flex;
  justify-content: space-between;
}

.flexAlign {
  display: flex;
  align-items: center;
}

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

.flexEnd {
  display: flex;
  align-items: flex-end;
}

.flexGrow {
  flex: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
header .menu {
  width: 20px;
  height: 14px;
  cursor: pointer;
  position: relative;
  display: none;
}
header .menu span {
  background-color: #fff;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 10px;
}
header .menu span:first-child {
  top: 0;
}
header .menu span:nth-child(2) {
  top: 6px;
}
header .menu span:last-child {
  top: 12px;
}
header .logo {
  padding: 30px 0px;
}
header ul {
  display: flex;
  align-items: center;
  gap: 38px;
  position: relative;
  z-index: 2;
  padding: 30px 0px;
}
header ul::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: #ffbf07;
  height: 51px;
  width: 176px;
  z-index: -1;
}
header ul a {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 800px) {
  header ul {
    display: none;
  }
  header .menu {
    display: block;
  }
}

.main-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background: #dd8560;
  transform: translateX(150%);
  transition: 0.3s;
  padding: 32px 42px;
  display: flex;
  flex-direction: column;
  row-gap: 65px;
}
.main-sidebar .close-sidebar img {
  filter: invert(1);
}
.main-sidebar .sidebar_head {
  display: flex;
}
.main-sidebar .sidebar_head .logo {
  flex: 1;
  text-align: center;
}
.main-sidebar .links {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start !important;
}
.main-sidebar .links::before {
  background: transparent;
}
.main-sidebar .links li {
  width: 100%;
}
.main-sidebar .links li a {
  font-size: 18px;
  color: #fff;
}

.main-sidebar.active {
  transform: none !important;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgb(142, 111, 175);
  padding: 35px;
}
footer h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: rgb(255, 191, 7);
}
footer ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer ul a {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
}
footer ul a span {
  font-size: 16px;
  color: #fff;
  direction: ltr;
}
footer p {
  color: rgb(255, 191, 7);
}
@media (max-width: 560px) {
  footer ul {
    display: block;
  }
  footer ul li {
    margin-bottom: 16px;
  }
}

.indexPage {
  height: 100vh;
}
.indexPage img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.indexPage .img2 {
  display: none;
}
@media (max-width: 1024px) {
  .indexPage .img1 {
    display: none;
  }
  .indexPage .img2 {
    display: block;
  }
}
@media (max-width: 430px) {
  .indexPage .img2 {
    height: 100%;
  }
}

.aboutPage .content {
  padding: 100px 0px;
}
.aboutPage .content .info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutPage .content .info h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
}
.aboutPage .content .info p {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 430px) {
  .aboutPage .content .info h1 {
    font-size: 24px;
  }
  .aboutPage .content .info p {
    font-size: 14px;
  }
}

.servicesPage .content {
  min-height: calc(100vh - 132px);
}
.servicesPage .content a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
}
.servicesPage .content a img {
  max-width: 100%;
  min-height: 100%;
}
.servicesPage .content a .img1,
.servicesPage .content a .img2 {
  position: absolute;
  transition: all 0.4s ease-out;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
}
.servicesPage .content a .img2 {
  z-index: 1;
  opacity: 0;
  transform: scale(1.1);
}
.servicesPage .content a:hover .img1 {
  transform: scale(1.1);
}
.servicesPage .content a:hover .img2 {
  opacity: 1;
}
.servicesPage .content a.development .img2 {
  transform: scale(1.15);
  transform-origin: 57% 43%;
}
.servicesPage .content a.development:hover .img1 {
  transform: scale(1.1);
}
.servicesPage .content a.development:hover .img2 {
  opacity: 1;
}
@media (max-width: 767px) {
  .servicesPage .content a.development .img2 {
    transform: scale(1.1);
  }
}
.servicesPage .content a.consulting .img2 {
  transform: scale(1.25);
  transform-origin: 50% 80%;
}
@media (max-width: 767px) {
  .servicesPage .content a.consulting .img2 {
    transform: scale(1.24);
    transform-origin: 50% 82%;
  }
}
.servicesPage .content a.marketing .img2 {
  transform: scale(1.38, 1.1);
  transform-origin: 18% 50%;
}
@media (max-width: 767px) {
  .servicesPage .content a.marketing .img2 {
    transform-origin: -45% 45%;
  }
}
@media (max-width: 430px) {
  .servicesPage .content a.marketing .img1 {
    transform: scale(0.7);
  }
  .servicesPage .content a.marketing:hover .img1 {
    transform: scale(0.8);
  }
  .servicesPage .content a.marketing .img2 {
    transform: scale(0.9, 0.8);
    transform-origin: 145% 50%;
  }
}

.marketingPage .content {
  padding: 60px 0px;
}
.marketingPage .content .info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.marketingPage .content .info h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.marketingPage .content .info p {
  color: #8e6faf;
  font-size: 25px;
  font-weight: 700;
}
.marketingPage .content a {
  display: block;
  position: relative;
  min-height: 100px;
  width: 100%;
}
.marketingPage .content a img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.marketingPage .content a .img1,
.marketingPage .content a .img2 {
  position: absolute;
  z-index: 2;
  transition: all 0.4s ease-out;
}
.marketingPage .content a .img2 {
  opacity: 0;
  z-index: 1;
  transform: scale(1.8);
}
.marketingPage .content a:hover .img1 {
  transform: scale(1.9);
}
.marketingPage .content a:hover .img2 {
  opacity: 1;
}
.marketingPage .content a.activation .img1 {
  transform-origin: 55% 50%;
}
.marketingPage .content a.activation:hover .img1 {
  transform: scale(1.9);
}
.marketingPage .content a.consulting .img2 {
  transform: scale(1.9) translate(-14px, 0px);
}
.marketingPage .content a.development:hover .img1 {
  transform: scale(1.7);
  transform-origin: 48% 50%;
}
.marketingPage .content a.marketing .img2 {
  transform-origin: 32% 55%;
}
@media (max-width: 767px) {
  .marketingPage .content a.marketing:hover .img1 {
    transform-origin: 70% 50%;
  }
  .marketingPage .content a.marketing:hover .img2 {
    transform-origin: 50% 50%;
  }
}
.marketingPage .content a.ui .img2 {
  transform-origin: 50% 60%;
}
.marketingPage .content a.ui:hover .img1 {
  transform: scale(1.6);
}
@media (max-width: 767px) {
  .marketingPage .content a.ui:hover .img1 {
    transform: scale(1.65);
  }
}
@media (max-width: 991px) {
  .marketingPage .shapes {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .marketingPage .content .info h1 {
    font-size: 20px;
  }
  .marketingPage .content .info p {
    font-size: 14px;
  }
  .marketingPage .content .logos .img {
    height: 100%;
    display: flex;
  }
}

.consultingPage .content {
  padding: 60px 0px;
}
.consultingPage .content .headImg {
  width: 125px;
}
.consultingPage .content .headImg img {
  width: 100%;
}
.consultingPage .content .info {
  padding-inline-start: 80px;
}
.consultingPage .content .info h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.consultingPage .content .info p {
  color: #8e6faf;
  font-size: 25px;
  font-weight: 700;
}
.consultingPage .content a {
  display: block;
  position: relative;
  min-height: 100px;
  width: 100%;
}
.consultingPage .content a img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.consultingPage .content a .img1,
.consultingPage .content a .img2 {
  position: absolute;
  z-index: 2;
  transition: all 0.4s ease-out;
}
.consultingPage .content a .img2 {
  opacity: 0;
  z-index: 1;
  transform: scale(1.8);
}
.consultingPage .content a:hover .img1 {
  transform: scale(1.9);
}
.consultingPage .content a:hover .img2 {
  opacity: 1;
}
.consultingPage .content a.activation .img1 {
  transform-origin: 55% 50%;
}
.consultingPage .content a.activation:hover .img1 {
  transform: scale(1.9);
}
.consultingPage .content a.consulting .img2 {
  transform: scale(1.9) translate(-15px, 0px);
}
.consultingPage .content a.development:hover .img1 {
  transform: scale(1.7);
  transform-origin: 48% 50%;
}
.consultingPage .content a.marketing .img2 {
  transform-origin: 32% 51%;
}
@media (max-width: 767px) {
  .consultingPage .content a.marketing:hover .img1 {
    transform-origin: 70% 50%;
  }
  .consultingPage .content a.marketing:hover .img2 {
    transform-origin: 50% 50%;
  }
}
.consultingPage .content a.ui .img2 {
  transform-origin: 50% 60%;
}
.consultingPage .content a.ui:hover .img1 {
  transform: scale(1.6);
}
@media (max-width: 767px) {
  .consultingPage .content a.ui:hover .img1 {
    transform: scale(1.65);
  }
}
@media (max-width: 991px) {
  .consultingPage .shapes {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .consultingPage .content .info {
    padding-inline-start: 0;
  }
  .consultingPage .content .info h1 {
    font-size: 20px;
  }
  .consultingPage .content .info p {
    font-size: 14px;
  }
  .consultingPage .content .logos .img {
    height: 100%;
    display: flex;
  }
}

.activitaionPage .content {
  padding: 60px 0px;
}
.activitaionPage .content .headImg {
  max-width: 420px;
  margin-bottom: -80px;
}
.activitaionPage .content .headImg img {
  width: 100%;
}
.activitaionPage .content .info h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.activitaionPage .content .info p {
  color: #8e6faf;
  font-size: 25px;
  font-weight: 700;
  max-width: 70%;
}
.activitaionPage .content .puzzle {
  display: flex;
  justify-content: flex-end;
  max-width: 80%;
  margin-top: -25px;
}
.activitaionPage .content a {
  display: block;
  position: relative;
  min-height: 100px;
  width: 100%;
}
.activitaionPage .content a img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.activitaionPage .content a .img1,
.activitaionPage .content a .img2 {
  position: absolute;
  z-index: 2;
  transition: all 0.4s ease-out;
}
.activitaionPage .content a .img2 {
  opacity: 0;
  z-index: 1;
  transform: scale(1.8);
}
.activitaionPage .content a:hover .img1 {
  transform: scale(1.9);
}
.activitaionPage .content a:hover .img2 {
  opacity: 1;
}
.activitaionPage .content a.activation:hover .img1 {
  transform-origin: 70% 50%;
}
.activitaionPage .content a.consulting .img2 {
  transform: scale(1.9) translate(-14px, 0px);
}
.activitaionPage .content a.development:hover .img1 {
  transform: scale(1.7);
  transform-origin: 48% 50%;
}
.activitaionPage .content a.marketing .img2 {
  transform-origin: 32% 55%;
}
@media (max-width: 767px) {
  .activitaionPage .content a.marketing:hover .img1 {
    transform-origin: 70% 50%;
  }
  .activitaionPage .content a.marketing:hover .img2 {
    transform-origin: 50% 50%;
  }
}
.activitaionPage .content a.ui .img2 {
  transform-origin: 50% 60%;
}
.activitaionPage .content a.ui:hover .img1 {
  transform: scale(1.6);
}
@media (max-width: 767px) {
  .activitaionPage .content a.ui:hover .img1 {
    transform: scale(1.65);
  }
}
@media (max-width: 991px) {
  .activitaionPage .shapes {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .activitaionPage .content .info .flexEnd {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .activitaionPage .content .info .headImg {
    margin-bottom: 0;
  }
  .activitaionPage .content .info h1 {
    font-size: 20px;
  }
  .activitaionPage .content .info p {
    max-width: 100%;
    font-size: 14px;
  }
  .activitaionPage .content .puzzle {
    margin-top: 0;
  }
  .activitaionPage .content .logos .img {
    height: 100%;
    display: flex;
  }
}

.uiPage .content {
  padding: 60px 0px;
}
.uiPage .content .headImg {
  width: 125px;
  margin-bottom: 25px;
}
.uiPage .content .headImg img {
  width: 100%;
}
.uiPage .content .info h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.uiPage .content .info p {
  color: #8e6faf;
  font-size: 25px;
  font-weight: 700;
}
.uiPage .content a {
  display: block;
  position: relative;
  min-height: 100px;
  width: 100%;
}
.uiPage .content a img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.uiPage .content a .img1,
.uiPage .content a .img2 {
  position: absolute;
  z-index: 2;
  transition: all 0.4s ease-out;
}
.uiPage .content a .img2 {
  opacity: 0;
  z-index: 1;
  transform: scale(1.8);
}
.uiPage .content a:hover .img1 {
  transform: scale(1.9);
}
.uiPage .content a:hover .img2 {
  opacity: 1;
}
.uiPage .content a.activation .img1 {
  transform-origin: 55% 50%;
}
.uiPage .content a.activation:hover .img1 {
  transform: scale(1.9);
}
.uiPage .content a.consulting .img2 {
  transform: scale(1.9) translate(-14px, 0px);
}
.uiPage .content a.development:hover .img1 {
  transform: scale(1.7);
  transform-origin: 48% 50%;
}
.uiPage .content a.marketing .img2 {
  transform-origin: 32% 51%;
}
@media (max-width: 767px) {
  .uiPage .content a.marketing:hover .img1 {
    transform-origin: 70% 50%;
  }
  .uiPage .content a.marketing:hover .img2 {
    transform-origin: 50% 50%;
  }
}
@media (max-width: 991px) {
  .uiPage .shapes {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .uiPage .content .info {
    padding-inline-start: 0;
  }
  .uiPage .content .info h1 {
    font-size: 20px;
  }
  .uiPage .content .info p {
    font-size: 14px;
  }
  .uiPage .content .logos .img {
    height: 100%;
    display: flex;
  }
}