* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
}
/*set up the body*/
body {
  display: flex;
  flex-direction: column;
  background: url(../background_image/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 0;
}
/*primary header*/
.section-logo {
  margin: 2rem;
}
.logo {
  width: 170px;
}
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}
nav {
  position: fixed;
  right: 0px;
  z-index: 1001;
}
nav ul li a:hover {
  text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff;
}
.primary-header {
  position: relative;
  align-items: center;
}
.mobile-nav-toggle {
  display: none;
}
.primary-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.308);
  border-radius: 100px 0px 0px 5px;
  border-right: none;
}
.safari .primary-navigation {
  background-image: url(../bghome.png);
  background-size: cover;
  background-position: center;
}
.primary-navigation a {
  text-decoration: none;
  color: #ffffff;
}
.primary-navigation a > [aria-hidden="true"] {
  font-weight: 700;
  margin-inline-end: 0.7em;
}
/*Welcome Image*/
.container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-slogan {
  width: 80%;
  object-fit: cover;
  border-radius: none;
}
.image-windows {
  width: 80%;
  object-fit: cover;
  border-radius: none;
  margin-top: 50px;
}
.image-test-whatweoffer {
  width: 80%;
  object-fit: cover;
  border-radius: none;
  margin-top: -140px;
}
.container-team {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -100px;
}
.team-images-faces {
  width: 30%;
}
.team-images-text {
  width: 70%;
}
.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 130px;
}
.button-start {
  display: flex;
  align-items: center;
  position: relative;
  width: 50%;
  height: 50%;
}
.button-start img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  transition: 2s;
}
.button-start #img2:hover {
  transition: 1s;
  opacity: 0;
}
.text-phone-image {
  display: none;
}
.logos {
  color: #212427;
  box-shadow: 0 0 20px #ffffff3a;

  background: linear-gradient(
    to right,
    rgb(255, 251, 0, 0.8),
    rgb(158, 20, 223, 0.8)
  );
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.tripa {
  margin-top: 200px;
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  background-color: #ffffff15;
  position: relative;
  margin-bottom: -9.5%;
}

.tripa:before,
.tripa:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
.tripa:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #2b2b2b);
}
.tripa:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #2b2b2b);
}
.tripa:hover .tripa-slide {
  animation-play-state: paused;
}

.tripa-slide {
  display: inline-block;

  animation: 35s slide infinite linear;
}
.tripa-slide img {
  height: 120px;
  margin: 0 65px;
}
.footer-text-ending {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto";
  margin-bottom: 20px;
}
.footer-text-ending span {
  font-weight: 500;
}
/*Show Case*/
.container-showcase {
  position: absolute;
  bottom: -171%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  background-color: #ffffff15;
  padding: 50px;
}
.logo-images {
  width: 100%;
}
.logo-images-siafakas {
  width: 300px;
}
/*Footer Section*/
footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 180px;
  background-color: #21242700;
  padding: 60px 10%;
  border-top: 1px solid #ffffffc2;
}
.footer-col {
  width: 25%;
}
.footer-col h4 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  text-transform: capitalize;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #fff;
  height: 1px;
  width: 60px;
}
ul li:not(:last-child) {
  margin-bottom: 20px;
}
ul li a {
  display: block;
  font-size: 16px;
  color: #ffffffa1;
  transition: 0.4s;
}
.footer-questions a:hover {
  color: #fff;
  padding-left: 3px;
}
.links a {
  border: 1px solid white;
  font-size: 18px;
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: #212427;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  transition: 0.5s;
}
.links a:hover {
  border-color: #212427;
  color: #212427;
  background-color: #fff;
  box-shadow: 0px 0px 30px 5px #fff;
}
@media (min-width: 35em) {
  .primary-navigation {
    --gap: 3rem;
    padding-block: 1.5em;
    padding-inline: clamp(3rem, 10vw, 10rem);
  }
}
@media (max-width: 50em) {
  body {
    display: flex;
    flex-direction: column;
    background-image: url(../background_image/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .team-images-text {
    display: none;
  }
  .text-phone-image {
    display: flex;
    width: 80%;
    margin: auto;
  }
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-slogan {
    width: 95%;
    object-fit: cover;
    border-radius: none;
  }
  .image-windows {
    width: 95%;
    object-fit: cover;
    border-radius: none;
    margin: 40px 0;
  }
  .image-test-whatweoffer {
    width: 95%;
    object-fit: cover;
    border-radius: none;
    margin: -120px 0;
  }
  .container-team {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
  }
  .team-images-faces {
    width: 65%;
  }
  .team-images-text {
    width: 100%;
  }
  .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }
  .button-start {
    display: flex;
    align-items: center;
    position: relative;
    width: 50%;
    height: 50%;
  }
  .button-start img {
    position: absolute;
    width: 100%;
    object-fit: cover;
  }
  .tripa {
    height: 50px;
    margin-top: 100px;
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    background-color: #ffffff15;
    position: relative;
    margin-bottom: -180px;
  }
  .tripa:before,
  .tripa:after {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  .tripa-slide img {
    height: 50px;
    margin: 0 35px;
  }
  .text {
    margin-bottom: 30px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-col h4::before {
    all: unset;
  }
  .primary-navigation {
    --gap: 2.8em;

    position: fixed;
    z-index: 1000;

    inset: 0 0 0 45%;
    flex-direction: column;

    padding: min(30vh, 10rem) 2em;
    transform: translateX(100%);

    transition: transform 350ms ease-out;
    background: hsl(0, 0%, 100% / 0.75);
  }
  .primary-navigation[data-visible="true"] {
    transform: translateX(0%);
  }
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    background: url("../icons/white.svg");
    width: 2rem;
    border: 0;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    top: 2rem;
    right: 2rem;
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    background-image: url(../icons/white-x.svg);
  }
}
@media (min-width: 882px) and (max-width: 928px) {
  .primary-navigation a > span[aria-hidden] {
    display: none;
  }
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0;
  }
  .team-images-text {
    display: none;
  }
  .text-phone-image {
    display: flex;
    width: 80%;
    margin: auto;
  }
  .image-slogan {
    width: 120%;
    object-fit: cover;
    border-radius: none;
  }
  .image-windows {
    width: 120%;
    object-fit: cover;
    border-radius: none;
    margin: 40px 0;
  }
  .image-test-whatweoffer {
    width: 140%;
    object-fit: cover;
    border-radius: none;
    margin: -120px 0;
  }
  .container-team {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
  }
  .team-images-faces {
    width: 65%;
  }
  .team-images-text {
    width: 100%;
  }
  .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
  }
  .button-start {
    display: flex;
    align-items: center;
    position: relative;
    width: 50%;
    height: 50%;
  }
  .button-start img {
    position: absolute;
    width: 100%;
    object-fit: cover;
  }
  .tripa {
    height: 50px;
    margin-top: 100px;
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    background-color: #ffffff15;
    position: relative;
    margin-bottom: -180px;
  }
  .tripa:before,
  .tripa:after {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  .tripa-slide img {
    height: 50px;
    margin: 0 35px;
  }
  .text {
    margin-bottom: 30px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media (min-width: 35em) and (max-width: 55em) {
  .primary-navigation a > span[aria-hidden] {
    display: none;
  }
  .footer-col {
    width: 100%;
  }
}
