﻿.nav-bar {
  background: transparent;
}
.nav-bar .nav-links li a {
  color: #fff;
}
.nav-bar .logo .text h2 {
  color: #fff !important;
}
.nav-bar .fa-search {
  color: #fff;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-bar.scrolled {
  background-color: #fff;
  position: fixed;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.nav-bar.scrolled .nav-links li a {
  color: #333;
}
.nav-bar.scrolled .nav-links li a:hover {
  color: #fff;
}
.nav-bar.scrolled .logo .text h2 {
  color: #333 !important;
}
.nav-bar.scrolled .fa-search {
  color: #333;
}

#skyeye {
  position: relative;
}
#skyeye .title-content {
  padding: 30px 0;
}
#skyeye .title-content h2 {
  font-size: 2.75rem;
  font-family: "fs magistral-bold";
  text-align: center;
  color: #333;
}
#skyeye .container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}
#skyeye .container-custom {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}
#skyeye .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#skyeye .breadcrumb-banner .breadcrumb-content {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#skyeye .breadcrumb-banner .breadcrumb-content img {
  width: 100%;
  object-fit: cover;
  border-radius: 0px;
}
#skyeye .breadcrumb-banner .breadcrumb-content .breadcrumb-body {
  position: absolute;
  z-index: 1;
  color: #fff;
  text-align: center;
  display: grid;
  gap: 25px;
  max-width: 900px;
}
#skyeye .breadcrumb-banner .breadcrumb-content .breadcrumb-body .breadcrumb {
  font-size: 13pt;
}
#skyeye .breadcrumb-banner .breadcrumb-content .breadcrumb-body .breadcrumb .breadcrumb-item a {
  color: #333;
}
#skyeye .breadcrumb-banner .breadcrumb-content .breadcrumb-body .breadcrumb-item:last-child a {
  color: #e51010 !important;
}
#skyeye .skyeye-main .skyeye-content {
  font-size: 13pt;
  padding-top: 50px;
}
#skyeye .skyeye-main .skyeye-content img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
#skyeye .skyeye-main .skyeye-content p {
  text-align: justify;
}
#skyeye .skyeye-main .skyeye-content .circle-cover {
  display: flex;
  justify-content: space-around;
  padding-top: 40px;
}
#skyeye .skyeye-main .skyeye-content .circle-cover .circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 200px;
}
#skyeye .skyeye-main .skyeye-content .circle-cover .circle-item figcaption {
  font-style: italic;
}
#skyeye .skyeye-main .skyeye-content .circle-cover .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #e9e9e9;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#skyeye .skyeye-main .skyeye-content .circle-cover .circle img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  box-shadow: none;
}
#skyeye .skyeye-main .skyeye-content .circle-cover .circle:hover {
  transition: all 0.3s ease;
  transform: scale(1.2);
}
