@import url(./fonts/fontiran.css);

/* Globals */
:root {
  --primary: #3935ff;
  --secondary: #ff6b35;
  --dark: #252525;
  --white: #ffffff;
  --light: rgb(243, 243, 243);
  --gray: gray;
  --danger: #ff3333;
  --success: #0fb300;
  --low-shadow: 0px 3px 10px -5px rgba(57, 53, 255, 0.41);
  --high-shadow: 0px 11px 39px -13px rgba(108, 105, 255, 0.41);
}

* {
  font-family: ModamFaNumWeb;
  transition: all ease-in-out 300ms;
  user-select: none;
  text-wrap: wrap;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: unset;
}

.clickable {
  cursor: pointer;
}

a:active,
.clickable:active {
  transform: scale(93%);
}

p {
  margin: 0;
}

body {
  direction: rtl;
  padding: 0;
  margin: 0;
  color: var(--dark);
  animation: showUp 500ms ease-in-out 0ms 1 forwards;
  overflow-x: hidden;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(216, 216, 255) 100%);
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}

h3,
h4,
h5,
h6 {
  font-size: larger;
}

.body-padding {
  padding: 0.5rem 1rem;
}

.d-none {
  display: none !important;
}

.animation {
  opacity: 0.3;
  transition: all 0.5s ease-out;
  transition-delay: 0s;
}

.scroll-animation {
  opacity: 1;
}
/* End Global */


/* Start Header */
#nav {
  position: sticky;
  top: 0;
  z-index: 999;
  padding-top: 0.8rem;
}

#nav nav{
  background-color: var(--white);
}

nav .desktop-menu {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 100%; */
  background-color: var(--white);
  padding: 0.5rem 0.7rem;
  border-radius: 100rem;
  box-shadow: 0px 11px 39px -13px rgba(57, 53, 255, 0.41);
  -webkit-box-shadow: 0px 11px 39px -13px rgba(57, 53, 255, 0.41);
  -moz-box-shadow: 0px 11px 39px -13px rgba(57, 53, 255, 0.41);
}

nav div:first-child {
  width: 50%;
  display: flex;
  align-items: center;
}

nav div:last-child {
  display: flex;
  align-items: center;
}

nav .desktop-menu a {
  position: relative;
  top: 7px;
}

nav div:last-child a {
  display: none;
}

nav div:last-child a,
.header-main .main-btn {
  padding: 0.9rem 1.2rem;
  border-radius: 100rem;
  background-color: var(--secondary);
  color: var(--white);
}

.secondary-btn {
  padding: 0.9rem 1.2rem;
  border-radius: 100rem;
  background-color: var(--primary);
  color: var(--white);
}

h1 {
  text-align: center;
}

h1::before {
  content: url('../images/asset-1.png');
  position: relative;
  top: 10px;
  margin-left: 5px;
}

h1::after {
  content: url('../images/asset-2.png');
  position: relative;
  top: 10px;
  margin-right: 10px;
}

h2 {
  color: var(--primary);
  text-align: center;
}

#download-android::before {
  /* content: url('./../images/android.png'); */
  content: '';
  margin-left: 0rem;
  margin-right: 0.5rem;
  position: relative;
  top: 0.6rem;
  height: 10px;
  width: auto;
}

header {
  background-color: var(--white);
}

header p {
  margin-bottom: 2rem;
}

.header-main .button-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-main .button-container .main-btn {
  padding: auto 2rem !important;
}

.header-main {
  padding: 1rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.header-image {
  width: 100%;
  height: 40vh;
  background: url('../images/Frame\ 3.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.header-upload {
  width: 100%;
}

#hamburger-menu {
  display: flex;
  align-items: center;
}

#mobile-menu {
  position: fixed;
  height: 100vh;
  width: 70%;
  z-index: 999;
  background-color: var(--white);
  top: 0;
  padding: 2rem 1rem;
  box-shadow: var(--high-shadow);
  transform: translateX(1024px);
}

#mobile-menu a {
  display: block;
  margin: 1rem 0;
  font-size: large;
}

#mobile-menu-footer {
  color: var(--gray);
  display: block;
  text-align: center;
  position: relative;
  top: 4rem;
  border-top: 1px solid var(--gray);
  padding: 0.5rem;
}

.mobile-menu-show {
  transform: translateX(0px) !important;
}

/* End Header */

/* Features */

h3 {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  margin: 1rem auto;
  font-size: large;
}

#features {
  margin-bottom: 0px;
}

#features-container {
  display: flex;
  padding-top: 3rem;
  justify-content: space-around;
  flex-wrap: wrap;
}


.features-animated {
  animation: showUp 500ms ease-in-out 0ms 1 forwards;
}

#features-container .feature {
  height: 120px;
  width: 90px;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0px 11px 39px -13px rgba(57, 53, 255, 0.41);
  -webkit-box-shadow: 0px 11px 39px -13px rgba(57, 53, 255, 0.41);
  -moz-box-shadow: 0px 11px 39px -13px rgba(57, 53, 255, 0.41);
  overflow-y: auto;
  position: relative;
  cursor: pointer;
  margin-bottom: 1rem;
}

#features-container .feature:hover {
  box-shadow: var(--low-shadow);
  -webkit-box-shadow: var(--low-shadow);
  -moz-box-shadow: var(--low-shadow);
  transform: translateY(-5px);
}

#features-container .feature::-webkit-scrollbar {
  display: none;
}

#features-container .feature .text {
  opacity: 0;
  font-weight: 300;
}

#features-container .feature .title {
  font-weight: bold;
}

#features-container .feature:hover .icon {
  transform: translateY(-100px) rotateZ(45deg);
  opacity: 0;
}

#features-container .feature:hover .title {
  width: 100%;
  transform: translateY(-100px);
  font-weight: bold;
}

#features-container .feature:hover .text {
  width: 100%;
  opacity: 100%;
  transform: translateY(-85px);
}

#features-container .feature .icon {
  background-color: var(--primary);
  height: 5rem;
  width: 5rem;
  /* width: 100%; */
  margin: auto;
  margin-bottom: 10px;
  border-radius: 1rem;

  box-shadow: var(--high-shadow);
  -webkit-box-shadow: var(--high-shadow);
  -moz-box-shadow: var(--high-shadow);
}

#features-container .feature:nth-child(3) .icon {
  background-color: var(--secondary);
}

#features-container .feature .icon span {
  display: block;
  height: 100%;
  width: 100%;
}

#features-container .feature:first-child .icon span {
  background: url('./../images/folder-cloud.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

#features-container .feature:nth-child(2) .icon span {
  background: url('./../images/lock.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

#features-container .feature:nth-child(3) .icon span {
  background: url('./../images/link.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

#features-container .feature:nth-child(4) .icon span {
  background: url('./../images/qr-code.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

#features-container .feature:nth-child(5) .icon span {
  background: url('./../images/link-upload.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

/* End Features */

/* About */

#about .content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}

#about .content div:first-child {
  width: 100%;
  height: 40vw;
  background: url('../images/about.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#about .content div:last-child {
  width: 100%;
}

#about .sub-title {
  color: var(--primary);
  font-size: 42px;
  font-weight: bold;
}

#about .text {
  margin-top: 40px;
  font-size: large;
  line-height: 30px;
}

h4::before {
  content: url('../images/asset-1.png');
  position: relative;
  top: 10px;
  margin-left: 5px;
}

/* End About */

/* Plans */

#plans-tabs {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem auto;
  width: 80%;
  border: 1px solid var(--dark);
  border-radius: 100rem;
}

#plans-tabs span {
  padding: 0.8rem 0.9rem;
  border-radius: 100rem;
  margin: 0 !important;
  cursor: pointer;
}

#plans-tabs span.active {
  color: var(--white);
  background-color: var(--primary);
}

#plans-tabs span:active {
  color: var(--white);
  background-color: var(--primary);
}

.plans-group {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan {
  width: 100%;
  background-color: white;
  border-radius: 1.2rem;
  box-shadow: var(--low-shadow);
  -webkit-box-shadow: var(--low-shadow);
  -moz-box-shadow: var(--low-shadow);
  padding: 0.5rem;
  border: 1px solid var(--dark);
  cursor: pointer;
  margin-bottom: 1rem;
}

.plan:hover {
  box-shadow: var(--high-shadow);
  -webkit-box-shadow: var(--high-shadow);
  -moz-box-shadow: var(--high-shadow);
  transform: scale(102%);
}

.plan .title {
  width: 70%;
  margin: auto;
  font-weight: bold;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--dark);
}

.plan ul {
  width: 70%;
  margin: auto;
  padding: 1.5rem 0;
  list-style-type: none;
}

.plan ul li {
  margin-top: 15px;
}

.plan ul li::before {
  content: '-';
}

.plan .price {
  font-size: 28px;
  font-weight: bolder;
  margin: 1rem 0;
}

.plan .price.line-through {
  text-decoration: line-through;
  font-size: larger;
  color: var(--gray);
  margin: 0;
}

.plan .primary-button:hover {
  background-color: var(--secondary);
}

.plan .primary-button {
  padding: 0.7rem 2rem;
  border-radius: 1rem;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  margin: 1.9rem auto;
  margin: 0.3rem auto !important;
  display:  flex;
  width: 80% !important;
  justify-content: space-between;
  align-items: center;
}

#plans {
  margin-bottom: 5rem;
}

/* End Plans */

/* Team */

#team {
  padding-top: 3rem;
}

h6 {
  text-align: center;
  margin-bottom: 1rem;
}

h6::before {
  content: url('../images/asset-1.png');
  position: relative;
  top: 10px;
}

#team .sub-title {
  font-weight: bolder;
  font-size: 32px;
  text-align: center;
  margin-bottom: 2rem;
}

#teams-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

#teams-container .card {
  width: 100%;
  background-color: var(--white);
  border-radius: 2rem;
  padding: 1rem;
  border: 1px solid var(--dark);
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

#teams-container .card:hover img {
  transform: translateY(-200px) rotateZ(45deg);
  opacity: 0;
}

#teams-container .card:hover .name {
  transform: translateX(-200px) rotateZ(45deg);
  opacity: 0;
}

#teams-container .card:hover .position {
  transform: translateX(200px) rotateZ(-45deg);
  opacity: 0;
}

#teams-container .card .text {
  opacity: 0;
  position: absolute;
  top: 0;
  padding: 1.7rem 0.9rem;
  overflow-y: auto;
  height: 50%;
}

#teams-container .card .text::-webkit-scrollbar {
  display: none;
}

#teams-container .card:hover .text {
  opacity: 1;
}

#teams-container .card img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

#teams-container .card .name {
  font-weight: bold;
  font-size: large;
  padding: 0.7rem 0;
  background-color: white;
  z-index: 100;
}

#teams-container .card .position {
  color: var(--gray);
}

#teams-container .card .social-medias {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

#teams-container .card .social-medias .icon-container {
  padding: 0.3rem;
}

#teams-container .card .social-medias .icon-container span{
  filter: grayscale(100);
}

#teams-container .card .social-medias .icon-container span:hover{
  filter: grayscale(0);
}

#teams-container .card .social-medias .instagram-icon {
  display: block;
  height: 30px;
  width: 30px;
  background: url('../images/instagram.png');
  background-position: center;
  background-repeat: no-repeat;
}

#teams-container .card .social-medias .linkedin-icon {
  display: block;
  height: 30px;
  width: 30px;
  background: url('../images/linkedin.png');
  background-position: center;
  background-repeat: no-repeat;
}

#teams-container .card .social-medias .website-icon {
  display: block;
  height: 30px;
  width: 30px;
  background: url('../images/website.png');
  background-position: center;
  background-repeat: no-repeat;
}

/* End Team */

/* Clients */

#clients {
  display: flex;
  align-items: center;
  overflow-x: auto;
  margin: 8rem auto;
}

#clients::-webkit-scrollbar {
  height: 0.5rem;
}

#clients::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#clients::-webkit-scrollbar-thumb {
  background-color: var(--gray);
}

#clients p {
  font-size: large;
  font-weight: bold;
  min-width: 50%;
  text-wrap: wrap;
}

#clients img {
  filter: grayscale(100%);
  opacity: 0.8;
  margin: 0 1rem;
  width: 30%;
  height: auto;
}

#clients img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* End Clients */

/* Footer */

footer {
  background-color: var(--white);
}

#footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 1rem !important;
}

#footer .column {
  width: 100%;
  margin-bottom: 2rem;
}

#footer .column:nth-child(2) {
  text-align: center;
}

#footer .column .card {
  padding: 0.5rem;
  background-color: var(--white);
  border-radius: 0.7rem;
  width: 95%;
  box-shadow: var(--low-shadow);
  -webkit-box-shadow: var(--low-shadow);
  -moz-box-shadow: var(--low-shadow);
  margin-bottom: 1rem;
  text-align: justify;
}

#footer .column .date {
  width: 95%;
  text-align: end;
}

#footer .column .card:hover {
  box-shadow: var(--high-shadow);
  -webkit-box-shadow: var(--high-shadow);
  -moz-box-shadow: var(--high-shadow);
}

#footer .column .title {
  font-size: large;
  font-weight: bold;
  color: var(--gray);
  margin-bottom: 0.7rem;
}

#footer .column a {
  display: block;
  margin-bottom: 0.4rem;
  text-align: center;
}

#footer .column a:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

footer .copy-right {
  padding: 1rem 0;
}

footer .copy-right a {
  color: var(--primary);
}

footer .copy-right a:hover {
  color: var(--secondary);
}

#footer-divider {
  position: relative;
  top: 10px;
}
/* End Footer */

@media only screen and (min-width: 1024px) {

  .body-padding {
    padding: 0.5rem 9rem;
  }

  body::-webkit-scrollbar {
    width: 0.5rem;
  }

  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }

  body::-webkit-scrollbar-thumb {
    background-color: var(--gray);
  }

  /* Header Main */
  nav .desktop-menu {
    display: block;
  }

  #mobile-menu {
    display: none !important;
  }

  .mobile-menu-show {
    display: none;
  }

  nav div:first-child {
    width: 10%;
  }

  nav div:first-child img {
    width: 100%;
    height: auto;
  }

  nav div:nth-child(2) {
    width: 65%;
    display: flex;
  }

  nav div:last-child a {
    display: inline-block;
  }

  #hamburger-menu {
    display: none;
  }

  nav div:nth-child(2) a,
  nav div:nth-child(2) a .active {
    margin-left: 1rem;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    padding-bottom: 0.5rem;
    position: relative;
  }

  nav div:nth-child(2) a:hover {
    color: var(--primary);
    border-color: var(--secondary);
  }

  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  header p {
    text-align: right;
  }

  h2 {
    text-align: right;
  }

  h1 {
    text-align: start;
  }

  .main-btn {
    margin-left: 15px;
    padding-left: 1.7rem !important;
    padding-right: 1.7rem !important;
  }

  .header-image {
    width: 40%;
    height: 80vh;
  }
  /* End Header  */


  /* Features */
  #features {
    height: 70vh;
    margin-bottom: 0px;
  }

  #features-container .feature:nth-child(2),
  #features-container .feature:nth-child(4) {
    position: relative;
    top: 5rem;
  }

  #features-container .feature:nth-child(3) {
    position: relative;
    top: 10rem;
  }

  /* End Features */

  /* About */
  #about .content div:first-child {
    width: 50%;
  }

  #about .content div:last-child {
    width: 50%;
  }

  /* End About */

  /* Plans */
  #plans-tabs {
    width: 50%;
  }

  .plans-group {
    width: 90%;
  }

  .plan {
    width: 30%;
  }

  /* End Plans */


  /* Team */
  #teams-container .card {
    width: 20%;
  }

  /* End Team */

  /* Start Clients */
  #clients p {
    min-width: 20%;
  }

  #clients img {
    width: 10%;
  }

  /* End Clients */


  /* Footer */
  #footer {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5rem;
  }

  #footer .column {
    width: 25%;
  }

  #footer .column .card {
    padding: 1.5rem;
  }

  /* End Footer */

}


@keyframes showUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
