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

* p,
h1,
h2,
h3,
h4,
h5,
label,
ul,
li {
  direction: rtl;
  text-shadow: 0 0 5px black;
}

body {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(128, 128, 128, 0.185);
}

@font-face {
  font-family: "Castoro";
  src: url(../public/fonts/Castoro-Regular.ttf);
}
@font-face {
  font-family: "Assistant";
  src: url(../public/fonts/Assistant-VariableFont_wght.ttf);
}
@font-face {
  font-family: "LexendDeca";
  src: local("LexendDeca") url(../public/fonts/LexendDeca-VariableFont_wght.ttf) format("ttf");
}
.heading-section {
  background-image: url("../public/backgrounds/hitech_vertical_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading-section .heading-section-image {
  width: 100%;
  min-height: 180px;
  background-image: url("../public/backgrounds/binary-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 12px 20px 8px rgba(0, 0, 0, 0.2);
}
.heading-section .profile-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  transform: translateY(-1.5rem);
}
.heading-section .profile-wrapper .profile-background {
  max-width: 50%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 50%;
  background: #a3f0ff;
  background: linear-gradient(90deg, rgba(163, 240, 255, 0.2) 28%, rgba(0, 212, 255, 0.2) 67%, rgba(35, 176, 204, 0.2) 94%);
  overflow: hidden;
}
.heading-section .profile-wrapper .profile-background .profile-image {
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 50%;
  border: solid 1px rgba(238, 244, 255, 0.3137254902);
}
.heading-section .header-wrapper {
  text-align: center;
  direction: rtl;
  padding: 2rem 0;
}
.heading-section .header-wrapper h1 {
  font-family: "LexendDeca", Sans-serif;
  font-size: calc(1.5rem + 2vw);
}
.heading-section .header-wrapper h2 {
  font-family: "Castoro", Sans-serif;
  font-size: calc(0.9rem + 2vw);
}
.heading-section .header-wrapper h1,
.heading-section .header-wrapper h2 {
  color: white;
}
.heading-section .buttons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}
.heading-section .buttons-wrapper .buttons-with-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Assistant", Sans-serif;
  font-size: 1.2rem;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.1s ease-in-out;
}
.heading-section .buttons-wrapper .buttons-with-text:hover {
  color: #a1fffa;
}
.heading-section .buttons-wrapper .buttons-with-text .buttons-frame {
  min-width: calc(65px + 2vw);
  min-height: calc(65px + 2vw);
  height: auto;
  border-radius: 50%;
  border: solid 3px #a1fffa;
  margin: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: brightness(0.5);
          backdrop-filter: brightness(0.5);
}
.heading-section .buttons-wrapper .buttons-with-text .buttons-frame:hover {
  -webkit-backdrop-filter: brightness(2.5) blur(5px);
          backdrop-filter: brightness(2.5) blur(5px);
}
.heading-section .buttons-wrapper .buttons-with-text .buttons-frame a {
  color: #a1fffa;
  text-decoration: none;
}
.heading-section .buttons-wrapper .buttons-with-text .buttons-frame a svg {
  width: calc(35px + 1vw);
  height: auto;
  color: #a1fffa;
}
.heading-section .bold-action-button {
  width: 70%;
  height: clamp(100px, 60%, 60px);
  margin-bottom: 2rem;
  font-family: "Assistant", Sans-serif;
  font-weight: bold;
  font-size: clamp(1.3rem, 5vw, 2rem);
  border-radius: 20px;
  border: solid #a1fffa;
  background: #66d4ff;
  background: linear-gradient(6deg, rgb(102, 212, 255) 21%, rgb(135, 255, 253) 55%, rgb(214, 255, 235) 91%);
  animation: pulse 1s alternate infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #a1fffa;
  }
  100% {
    box-shadow: 0px 0px 10px 0px #a1fffa;
  }
}
.heading-section a {
  text-decoration: none;
  color: black;
}

.about-section {
  background: url("../public/backgrounds/diagonal_stripe_design_cut.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.about-section .about-text-wrapper {
  padding: 0 2.2rem;
  padding-bottom: 2rem;
}
.about-section .about-text-wrapper h3 {
  font-family: "Castoro", Sans-serif;
  color: white;
  text-align: center;
  font-size: 1.8rem;
  display: block;
  padding: 2rem 0;
}
.about-section .about-text-wrapper p {
  font-family: "Assistant", Sans-serif;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  line-height: 1.5;
}
.about-section .about-text-wrapper p:nth-child(-n+3) {
  margin-bottom: 1rem;
}
.about-section .about-content-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
.about-section .about-content-wrapper iframe {
  width: 70%;
  min-height: 150px;
  box-shadow: 1px 1px 10px 1px black;
}
.about-section .info-accordions {
  margin: 0 auto;
  padding: 0 2rem;
  padding-bottom: 3rem;
  color: white;
}
.about-section .info-accordions .accordion {
  max-width: 500px;
  margin: 1.2rem auto;
  padding: 1rem;
  color: #a1fffa;
  overflow: hidden;
  box-shadow: 0px 0px 6px 2px #a1fffa;
  -webkit-backdrop-filter: brightness(0.3);
          backdrop-filter: brightness(0.3);
  font-weight: bold;
}
.about-section .info-accordions .accordion input {
  display: block;
  width: 1px;
  height: 1px;
  background-color: transparent;
  border: none;
}
.about-section .info-accordions .accordion label {
  display: block;
  position: relative;
  cursor: pointer;
  font-family: "Assistant", Sans-serif;
  font-size: 1.3rem;
}
.about-section .info-accordions .accordion label::after {
  position: absolute;
  left: 10px;
  content: " +";
}
.about-section .info-accordions .accordion-content-box {
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  color: white;
}
.about-section .info-accordions .accordion-content-box .accordion-content {
  padding: 1rem;
  font-family: "Assistant", Sans-serif;
}
.about-section .info-accordions .accordion-content-box .accordion-content .marker-dot {
  list-style-position: inside;
  list-style-type: none;
  margin-top: 0.8rem;
  font-weight: bold;
}
.about-section .info-accordions .accordion-content-box .accordion-content .marker-dot .marker-circle {
  list-style-type: circle;
  margin: 0.5rem 0;
  font-weight: normal;
}
.about-section .info-accordions input:checked ~ .accordion-content-box {
  max-height: 800px;
}
.about-section .info-accordions input:checked ~ label::after {
  content: "-";
}
.about-section .emphasized-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Assistant", Sans-serif;
  color: white;
}
.about-section .emphasized-feature .emphasized-heading {
  text-align: center;
}
.about-section .emphasized-feature .emphasized-heading p {
  font-size: 1.5rem;
}
.about-section .emphasized-feature .emphasized-heading p span {
  font-size: 3rem;
  color: #a1fffa;
}
.about-section .emphasized-icon {
  display: flex;
  justify-content: center;
}
.about-section .emphasized-text {
  font-size: 1.5rem;
  text-align: center;
  padding: 2rem;
}
@keyframes text-transform {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
  0% {
    transform: scale(1);
  }
}
.about-section .emphasized-text span {
  color: #a1fffa;
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-self: center;
  animation: text-transform 1s alternate infinite;
}

.projects-section {
  background-image: url(../public/backgrounds/white-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.projects-section .projects-heading-wrapper {
  text-align: center;
  padding: 2rem 0;
}
.projects-section .projects-heading-wrapper h3 {
  font-family: "Assistant", Sans-serif;
  font-size: 2rem;
  color: rgb(5, 3, 3);
  text-shadow: 0 0 2px black;
}
.projects-section .projects-heading-wrapper hr {
  border: 1px solid #a1fffa;
  justify-self: center;
  width: 35%;
}
.projects-section .projects-wrapper {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 5rem;
  color: #d4d4d4;
}
.projects-section .projects-wrapper .projects-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 75%;
  grid-gap: 20px;
  padding-inline-start: 33%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
@media (max-width: 768px) {
  .projects-section .projects-wrapper .projects-carousel {
    grid-auto-columns: 100%;
    padding-inline: 10%;
  }
}
.projects-section .projects-wrapper .projects-carousel .project-item {
  max-width: 300px;
  min-height: 500px;
  padding: 20px;
  font-family: "Assistant", Sans-serif;
  border: none;
  border-radius: 10px;
  scroll-snap-align: center;
  background: #050000;
  background: linear-gradient(180deg, rgb(5, 0, 0) 79%, rgb(1, 76, 114) 87%, rgb(161, 255, 250) 96%);
  display: grid;
  grid-template-areas: "logo logo" "picture picture" "picture picture" "description description" "button button";
  justify-content: center;
  align-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-item-logo {
  grid-area: logo;
  text-align: center;
  font-weight: bold;
  font-size: calc(1rem + 0.7vw);
  margin-bottom: 0.5rem;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-description {
  grid-area: description;
  padding: 1rem;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-description h4 {
  text-align: center;
  font-size: calc(0.9rem + 0.6vw);
  text-shadow: none;
  padding: 0.5rem 0;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-description p {
  font-size: calc(0.8rem + 0.3vw);
  text-shadow: none;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-btn-show-more {
  grid-area: button;
  height: 44px;
  margin-top: 0.5rem;
  border: solid 1px black;
  border-radius: 10px;
  font-family: "Assistant", Sans-serif;
  font-weight: bold;
  font-size: calc(1rem + 0.3vw);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-btn-show-more:hover {
  color: white;
  background-color: transparent;
  scale: 1.03;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-picture {
  grid-area: picture;
  min-width: 150px;
  max-height: 250px;
  overflow: scroll;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-picture::-webkit-scrollbar {
  display: none;
}
.projects-section .projects-wrapper .projects-carousel .project-item .project-picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.projects-section .modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.459);
  justify-content: center;
  align-items: center;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}
.projects-section .modal.show {
  display: flex;
  opacity: 1;
}
.projects-section .modal .modal-content {
  max-width: 90%;
  max-height: 90%;
  opacity: 1;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.projects-section .modal .modal.show .modal-content {
  opacity: 1;
  transform: scale(1);
}
.projects-section .modal .close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
.projects-section .modal .close-modal:hover {
  color: black;
}
.projects-section .modal .modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.projects-section .modal .modal-nav button {
  border: none;
  font-size: 3rem;
  background: transparent;
  color: white;
  cursor: pointer;
}
.projects-section .modal .modal-nav button:hover {
  color: black;
}

.bottom-section {
  background-image: url(../public/backgrounds/diagonal_stripe_design_cut.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.bottom-section .reviews-container {
  padding-bottom: 3rem;
}
.bottom-section .reviews-container .reviews-heading {
  text-align: center;
  padding: 3rem 0;
}
.bottom-section .reviews-container .reviews-heading h3 {
  font-family: "Castoro", Sans-serif;
  font-size: 1.5rem;
  color: white;
}
.bottom-section .reviews-container .reviews-heading hr {
  border: 1px solid #a1fffa;
  justify-self: center;
  width: 35%;
}
.bottom-section .reviews-container .reviews-slidshow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Assistant", Sans-serif;
  color: white;
  text-align: center;
}
.bottom-section .reviews-container .reviews-slidshow .slides.active-slide {
  display: block;
  min-height: 110px;
}
.bottom-section .reviews-container .reviews-slidshow .slides {
  display: none;
}
.bottom-section .reviews-container .reviews-slidshow .slides p:first-child {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
}
.bottom-section .reviews-container .reviews-slidshow .slides p:last-child {
  color: #a1fffa;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  padding: 1rem 0;
}
.bottom-section .reviews-container .reviews-slidshow button {
  font-size: 3rem;
  border: none;
  background: none;
  padding: 0 0.8rem;
  color: white;
  cursor: pointer;
}
.bottom-section .reviews-container .slide-dots {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.bottom-section .reviews-container .slide-dots .slide-dot.active-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}
.bottom-section .reviews-container .slide-dots .slide-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.452);
  border-radius: 50%;
}
.bottom-section .action-buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
}
.bottom-section .action-buttons-container .action-buttons-heading {
  text-align: center;
  padding: 3rem 0;
}
.bottom-section .action-buttons-container .action-buttons-heading h3 {
  font-family: "Castoro", Sans-serif;
  font-size: 2rem;
  color: white;
}
.bottom-section .action-buttons-container .action-buttons-heading hr {
  border: 1px solid #a1fffa;
  justify-self: center;
  width: 35%;
}
.bottom-section .action-buttons-container .main-button-wrapper .bold-action-button {
  display: block;
  width: 70%;
  height: clamp(100px, 60%, 60px);
  margin: 0 auto;
  margin-bottom: 2rem;
  font-family: "Assistant", Sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 20px;
  border: solid #a1fffa;
  background-color: #a1fffa;
  animation: pulse 1s alternate infinite;
}
.bottom-section .action-buttons-container .main-button-wrapper a {
  text-decoration: none;
  color: black;
}
.bottom-section .action-buttons-container .buttons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.8rem;
  padding: 0 1rem;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Assistant", Sans-serif;
  font-size: 1.2rem;
  color: white;
  transition: text-shadow 0.1s ease-in-out;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text:hover {
  text-shadow: #ffffff 1px 0px 12px;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a svg {
  width: 50px;
  height: auto;
  transition: all 200ms ease-in-out;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a#whatsapp {
  color: #68ff54;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a#whatsapp svg:hover {
  transform: scale(1.1);
  color: white;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a#phone {
  color: #546eff;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a#phone svg:hover {
  transform: scale(1.1);
  color: white;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a#waze {
  color: #4af0fc;
}
.bottom-section .action-buttons-container .buttons-wrapper .buttons-with-text a#waze svg:hover {
  transform: scale(1.1);
  color: white;
}
.bottom-section .contact-form-container {
  color: white;
}
.bottom-section .contact-form-container .contact-heading-wrapper {
  text-align: center;
  padding: 3rem 0;
}
.bottom-section .contact-form-container .contact-heading-wrapper h3 {
  font-family: "Castoro", Sans-serif;
  font-size: 1.5rem;
  color: white;
}
.bottom-section .contact-form-container .contact-heading-wrapper hr {
  border: 1px solid #a1fffa;
  justify-self: center;
  width: 35%;
}
.bottom-section .contact-form-container form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.bottom-section .contact-form-container form input {
  width: 55%;
  height: 60px;
  padding: 10px;
  border: 2px solid #a1fffa;
  border-radius: 10px;
  font-size: 1.2rem;
  font-family: "Assistant", Sans-serif;
  color: #ffffff;
  text-align: right;
  background-color: transparent;
  -webkit-backdrop-filter: blur(5px) brightness(0.4);
          backdrop-filter: blur(5px) brightness(0.4);
}
.bottom-section button {
  width: 55%;
  height: 60px;
  margin-bottom: 2rem;
  color: black;
  font-family: "Assistant", Sans-serif;
  cursor: pointer;
  font-size: 1.4rem;
  background-color: #a1fffa;
  border: none;
  border-radius: 10px;
  transition: all 200ms ease-in-out;
}
.bottom-section button:hover {
  border: solid 2px #a1fffa;
  color: #a1fffa;
  font-size: 1.5rem;
  background-color: transparent;
}
.bottom-section .share-buttons-container {
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}
.bottom-section .share-buttons-container h3 {
  font-family: "Castoro", Sans-serif;
  font-size: 1.5rem;
  color: white;
}
.bottom-section .share-buttons-container hr {
  border: 1px solid #a1fffa;
  justify-self: center;
  width: 35%;
}
.bottom-section .share-buttons-container .buttons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.8rem;
}
.bottom-section .share-buttons-container .buttons-wrapper .buttons-with-text {
  display: flex;
  flex-direction: column;
}
.bottom-section .share-buttons-container .buttons-wrapper .buttons-with-text a svg {
  width: 50px;
  height: auto;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.bottom-section .share-buttons-container .buttons-wrapper .buttons-with-text a svg:hover {
  transform: scale(1.1);
}
.bottom-section .credit-footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: 2rem;
}
.bottom-section .credit-footer a {
  text-decoration: none;
  color: white;
  font-family: "Assistant", Sans-serif;
  padding-bottom: 0.8rem;
}
.bottom-section .credit-footer a p {
  direction: ltr;
  text-align: center;
}
.bottom-section .credit-footer a p:hover {
  -webkit-text-decoration: underline #a1fffa;
          text-decoration: underline #a1fffa;
  color: #a1fffa;
}
.bottom-section .credit-footer a p span {
  font-size: 1.1rem;
}/*# sourceMappingURL=main.css.map */