@font-face {
  font-family: "Suisse Intl", roboto, arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SuisseIntl-Regular-WebS.woff2") format("woff2")
    url("../fonts/SuisseIntl-Regular-WebS.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl", roboto, arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/SuisseIntl-Bold-WebS.woff2") format("woff2")
    url("../fonts/SuisseIntl-Bold-WebS.woff") format("woff");
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Suisse Intl", roboto, arial, helvetica, sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}
h1 {
  font-family: "Suisse Intl", Helvetica, sans-serif, Lucida Sans Unicode;
  font-weight: 700;
}

.sticky-nav {
  position: fixed;
  padding: 0.5rem 0;
  max-width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  background: #0172f0;
  backdrop-filter: blur(8px);
  z-index: 9999;
  transition: all 0.5s ease;
}

.hero-section {
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}

@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::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #f9004d;
  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 {
  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);
}

/* Read More --- Button Style */
.btn-more-2 {
  display: inline-block;
  padding: 0.6rem 2rem;
  font-weight: 700;
  border: 2px solid #f9004d;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-more-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f9004d;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}

.btn-more-2:hover::before {
  transform: translateX(0);
}
.btn-more-2:hover svg path {
  fill: #fff;
}
/* End */

/* Mobile Style */
@media (max-width: 768px) {
}
