@font-face {
  font-family: "Ubuntu";
  src: url("rsc/fonts/ubuntu-font-family-0.83/Ubuntu-R.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}

header {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1;
}

footer {
  font-family: "Ubuntu", sans-serif;
  background-color: #333;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
footer p {
  margin: 0;
  font-size: 1.2rem;
}

.logo {
  max-height: calc(100vh - env(safe-area-inset-bottom));
  height: calc(100vh - env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #1f211b;
  overflow-y: hidden;
}
@media (max-height: 480px) {
  .logo {
    flex-direction: row;
  }
}
.logo .logo-svg {
  padding: 5%;
  max-height: 55vh;
  width: 80vw;
}
@media (max-height: 360px) {
  .logo .logo-svg {
    max-height: 80vh;
  }
}
.logo .texts {
  display: flex;
  flex-direction: column;
  margin: 0% 5%;
  width: 80vw;
}
.logo .texts h1 {
  margin: 0%;
  padding-bottom: 0%;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 3rem + 6vw, 7rem);
  line-height: clamp(1rem, 3rem + 6vw, 7rem);
  text-align: center;
  text-transform: uppercase;
  color: #a3a3a3;
  border-bottom: solid 1px #ffffff;
}
@media (max-height: 360px) {
  .logo .texts h1 {
    padding: 5%;
    font-size: clamp(1rem, 2rem + 3vw, 5rem);
    line-height: clamp(1rem, 2rem + 3vw, 5rem);
  }
}
.logo .texts h3 {
  padding: 0%;
  margin: 0%;
  font-family: "Ubuntu", sans-serif;
  font-weight: 100;
  font-size: clamp(0.5rem, 1rem + 4vw, 3rem);
  color: #5e5e5e;
  text-align: center;
}
@media (max-height: 360px) {
  .logo .texts h3 {
    padding: 5%;
    font-size: clamp(1rem, 1rem + 3vw, 2rem);
    line-height: clamp(1rem, 1rem + 3vw, 2rem);
  }
}
.logo .texts .refasbutton {
  text-align: center;
  max-height: 1.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 10px;
  border: 1px solid #666;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #333;
  color: #A3A3A3;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "Ubuntu", sans-serif;
  font-weight: 200;
  font-size: calc(1rem + 0.5vw);
  line-height: calc(1rem + 0.5vw);
  vertical-align: bottom;
  margin: 2% auto;
}
.logo .texts .refasbutton:hover {
  background-color: #666;
  color: #f7f7f7;
}
@media (max-width: 768px) {
  .logo .texts .refasbutton {
    padding: 0.8rem 1.5rem;
    font-size: calc(0.8rem + 0.5vw);
    line-height: calc(0.8rem + 0.5vw);
  }
}
@media (max-width: 480px) {
  .logo .texts .refasbutton {
    padding: 0.5rem 1rem;
    font-size: calc(0.7rem + 0.5vw);
    line-height: calc(0.7rem + 0.5vw);
  }
}

@media (min-width: 768px) {
  .projects_carousel {
    display: flex;
    flex-direction: row;
    gap: 4vmin;
    padding: 5%;
  }
  .projects_carousel img {
    width: 40vmin;
    height: 56vmin;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
@media (max-width: 768px) {
  .projects_carousel {
    display: flex;
    flex-direction: column;
    gap: 4vmin;
    padding: 5%;
    height: 50vw; /* Set the height to fit the half of the viewport width */
    overflow-y: scroll; /* Enable vertical scrolling */
    scrollbar-width: none; /* For Firefox: Hide scrollbar */
    -ms-overflow-style: none; /* For IE/Edge: Hide scrollbar */
    /* Hide scrollbar for Webkit-based browsers (Chrome, Safari) */
  }
  .projects_carousel::-webkit-scrollbar {
    display: none;
  }
  .projects_carousel img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: #f7f7f7;
}
@media (max-width: 875px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}
.features .feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 25%;
  max-width: 33%;
  margin: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 875px) {
  .features .feature {
    max-width: 70%;
    width: 70%;
  }
}
.features .feature h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 4vmin;
  color: #1d2c5e;
}
@media (max-width: 875px) {
  .features .feature h3 {
    font-size: clamp(1rem, 2rem + 3vw, 5rem);
    line-height: clamp(1rem, 2rem + 3vw, 5rem);
  }
}
.features .feature img {
  -webkit-user-drag: none;
}
@media (max-width: 875px) {
  .features .feature img {
    max-width: 100%;
  }
}

.video {
  max-width: 100%;
  overflow: hidden;
}
.video video {
  width: 100%;
  height: auto;
}

.contact {
  font-family: "Ubuntu", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #fff;
}
.contact h2 {
  margin: 0;
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
}
.contact form .formMessage {
  display: none;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
}
.contact label {
  margin-bottom: 10px;
}
.contact input, .contact textarea {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.contact input:focus, .contact textarea:focus {
  outline: none;
  border-color: #007bff;
}
@media screen and (max-width: 768px) {
  .contact input, .contact textarea {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 576px) {
  .contact input, .contact textarea {
    font-size: 0.8rem;
  }
}
.contact button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact button:hover {
  background-color: #0062cc;
}

.social {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  align-items: center;
  padding: 20px;
  background-color: #333;
}
.social svg path {
  fill: #007bff;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 1rem;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.social a:hover {
  background-color: #333;
  color: #fff;
}
.social a:first-child {
  margin-left: 0;
}
.social a:last-child {
  margin-right: 0;
}
.social a i {
  font-size: 1.5rem;
}

.non-selectable {
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none; /* Firefox */ /* IE/Edge */
  user-select: none; /* Standard syntax */
}/*# sourceMappingURL=style.css.map */