@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular-Web.woff2") format("woff2");
}
@font-face {
  font-family: "Tiempos";
  src: url("../fonts/TiemposTextWeb-Regular.woff2") format("woff2");
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Tiempos", sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}
h1 {
  font-family: "Graphik", Helvetica, sans-serif, Lucida Sans Unicode;
}

.sticky-nav {
  position: fixed;
  padding: 0.5rem 0;
  max-width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  backdrop-filter: blur(8px);
  z-index: 9999;
  transition: all 0.5s ease;
  border-bottom: 1px solid #d8d8d8;
}
.sticky-nav .nav-link {
  color: #1f2937;
}
.hero-section {
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}

header:hover .tool-area a {
  color: #333;
}

@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* animation: zoomBackground 6s linear infinite; */
  transition: all 0.5s ease;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.1) 100%
  );
  width: 300px;
  /* background: linear-gradient(
    180deg,
    rgba(7, 32, 60, 1) 0%,
    rgba(14, 46, 117, 1) 15%,
    rgba(31, 76, 239, 1) 100%
  ); */

  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #1cacfc !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #1cacfc;
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.carousel-item {
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-item.active {
  opacity: 1;
  position: relative;
}
input:focus {
  outline: none;
}
.footer-section {
  /* background-image: url("../images/footer_bg.jpg"); */
  background-size: cover;
  background-position: center;
}
.footer-section .border-t p {
  font-size: 14px;
}

.logo,
.logo2 {
  max-height: 30px;
  transition: all 0.3s ease;
}

.bg-fixed-cover {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.limit-text-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.limit-text-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.limit-text-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.news_item img:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* Button Style */
.btn-more button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.btn-more button {
  --primary-color: #fff;
  --hovered-color: #2cdbf6;
  position: relative;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  gap: 0.5rem;
  align-items: center;
}

.btn-more button p {
  margin: 0;
  position: relative;
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-more button::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--hovered-color);
  height: 2px;
  transition: 0.3s ease-out;
}

.btn-more button p::before {
  position: absolute;
  box-sizing: border-box;
  content: "";
  width: 0%;
  inset: 0;
  color: var(--hovered-color);
  overflow: hidden;
  transition: 0.3s ease-out;
}

.btn-more button:hover::after {
  width: 100%;
}

.btn-more button:hover p {
  color: #2cdbf6 !important;
}

.btn-more button:hover p::before {
  width: 100%;
}

.btn-more button:hover svg {
  transform: translateX(4px);
  color: var(--hovered-color);
}

.btn-more button svg {
  color: var(--primary-color);
  transition: 0.2s;
  position: relative;
  width: 15px;
  transition-delay: 0.2s;
}
/* -------------------------------- */
.btn-more2 button {
  display: inline-block;
  border-radius: 4px;
  background-color: #1cacfc;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 17px;
  padding: 16px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.btn-more2 button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn-more2 button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

.btn-more2 button:hover span {
  padding-right: 15px;
}

.btn-more2 button:hover span:after {
  opacity: 1;
  right: 0;
}
/* End */

/* Mobile Style */
@media (max-width: 768px) {
}
