/* @import "tailwindcss"; */

:root {
  font-family: 'Mo-Salah';
  line-height: 1.5;
  font-weight: 400;
  font-size: 20px;

  color-scheme: dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #1a1e5d;
  max-width: 100vw;
  overflow-x: hidden;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* scroll-behavior: smooth; */
  user-select: none;

}

/* @font-face {
  font-family: 'urbancat';
  src: url(assets/font/urbancat.ttf);
}

@font-face {
  font-family: 'TabacG1';
  src: url(assets/font/TabacG1.otf);
} */

@font-face {
  font-family: 'Kubos-Light';
  src: url(assets/font/Kubos/kubos-light.otf);
  font-display: swap;
}

@font-face {
  font-family: 'Kubos-Regular';
  src: url(assets/font/Kubos/kubos-regular.otf);
  font-display: swap;
}

@font-face {
  font-family: 'Mo-Salah';
  src: url(assets/font/Mo-Salah.otf);
  font-display: swap;
}

@font-face {
  font-family: 'custom_arial';
  src: url(assets/font/ARIAL.TTF);
  font-display: swap;
}


body {
  margin: 0;
}


a {
  text-decoration: none;
}

.rowCont {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.p-v {
  padding-top: 5%;
  padding-bottom: 5%;
}

/* padding-horizontal */
.p-h {
  padding-left: 10%;
  padding-right: 10%;
}

/* default-container */
.d-c {
  background-color: #fff;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  overflow: hidden;
  color: black;
}

.p-top {
  padding-top: 5%;
}

.p-bottom {
  padding-bottom: 5%;
}

.bottom-radius {
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}


.ref {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.ref:hover {
  text-decoration: underline;
}

.contact-button {
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 40px;
  background-color: #1a1e5d;
  margin-right: 1%;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  -webkit-text-stroke: 1px #fff;
  text-shadow:
    -0.5px -0.5px 0 #fff,
     0.5px -0.5px 0 #fff,
    -0.5px  0.5px 0 #fff,
     0.5px  0.5px 0 #fff;
  transition: padding 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bigTxt {
  text-align: right;
  margin-top: 20%;
  max-width: 75%;
  line-height: 2;
  font-family: 'Kubos-Light';
  text-shadow: 1px 6px 3px rgba(0, 0, 0, 0.2);
}

.logo-shine {
  position: absolute;
  border-radius: 20px;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  pointer-events: none;
  transition: none;
  animation: none;
}

.contact-button:hover .logo-shine {
  animation: shine 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-button.inverted {
  color: #1a1e5d;
  -webkit-text-stroke: 1px #1a1e5d;
  text-shadow:
    -0.5px -0.5px 0 #1a1e5d,
    0.5px -0.5px 0 #1a1e5d,
    -0.5px 0.5px 0 #1a1e5d,
    0.5px 0.5px 0 #1a1e5d;
  background-color: #fff;
  width: fit-content;
}

.contact-button.inverted .logo-shine {
  background: linear-gradient(90deg,
      transparent,
      rgba(26, 30, 93, 0.9),
      transparent);
}

@keyframes shine {
  from {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  to {
    left: 150%;
    opacity: 0;
  }
}

.contact-button .arrow {
  display: none;
  transform: translateX(-5px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-button:hover .arrow {
  display: block;
  transform: translateX(0);
}

.contact-button:hover {
  padding-right: 1.5rem;
}

@media (max-width: 1024px) {

  :root {
    font-size: 16px;
  }

  .bigTxt {
    font-size: 1.5rem;
    text-align: center;
  }

  p {
    font-size: 16px;
  }

}

@media (max-width: 480px) {

  :root {
    font-size: 16px;
  }

  .bigTxt {
    font-size: 1.2rem;
  }

  /* padding-vertical */
  .p-v {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  p {
    font-size: 16px;
  }

}

@media (max-width: 640px) {

  .rowCont {
    flex-direction: column;
  }

}

@media (min-width: 1025px) {

  .bigTxt {
    font-size: 2rem;
  }

}