/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bonheur+Royale&family=Cookie&family=Italianno&display=swap');

/* ========== Base Styles ========== */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Arial', sans-serif;
}

/* ========== Layout ========== */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.5);
}

.fixedhead {
  position: fixed;
  top: 90px;
  z-index: 99;
  display: inline-block;
}

.main {
  z-index: 99;
}

.topspace {
  padding-top: 90px;
  width: 100%;
}

.topspace2 {
  padding-top: 150px;
  width: 100%;
}

.tophead {
  width: 100%;
  height: auto;
}

/* ========== Header Columns ========== */
.head1, .head2, .head3 {
  float: left;
  height: 100%;
}

/* Clearfix */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* ========== Buttons & Cursor ========== */
.chand,
.notice_main,
.trow1:hover {
  cursor: pointer !important;
}

.btn-primary-outline {
  color: white;
  background: rgba(30, 41, 244, 0.3) !important;
  z-index: 9999;
}

/* ========== Carousel ========== */
.carousel {
  max-width: 100%;
  height: 330px;
}

.carousel-inner,
.carousel-item,
.carousel-item img {
  width: 100% !important;
  height: 100% !important;
}

.carousel-item {
  background-size: cover;
  background-position: center;
}

.carousel-indicators {
  bottom: -15px !important;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/* ========== Table Styling ========== */
.visitor td {
  border-bottom: 2px solid #928D8D;
  padding: 5px !important;
}

.trow1 {
  transition: transform 0.2s;
}

.trow1:hover {
  transform: scale(1);
  background: #ccc;
  color: #fff;
}

/* ========== Navigation ========== */
.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease-out;
}

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 20px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  transition: all 0.3s ease-out;
}

.start-header.scroll-on {
  padding: 10px 0;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
}

.start-header.scroll-on .navbar-brand img {
  height: 24px;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 28px;
  filter: brightness(10%);
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  float: right;
  right: 0;
  border: none;
  padding-right: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  border-bottom: 1px solid #000;
  top: 60px !important;
  position: absolute;
  right: 10px;
  background-image: none;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon::before,
.navbar-light .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 1px;
  background-color: #000;
  right: 0;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(45deg);
}

/* ========== Nav Links ========== */
.nav-link {
  color: #212121 !important;
  font-weight: 500;
  padding: 5px 0 !important;
  display: inline-block;
  transition: all 0.2s linear;
}

.nav-item {
  position: relative;
  transition: all 0.2s linear;
}

.nav-item:hover .nav-link {
  color: #8167a9 !important;
}

.nav-item.active .nav-link {
  color: #777 !important;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #8167a9;
  opacity: 0;
  transition: all 0.2s linear;
}

.nav-item:hover::after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover::after {
  opacity: 0;
}

/* ========== Dropdown ========== */
.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.2s linear;
  display: block;
  padding: 0;
  margin: 0;
}

.nav-item.show .dropdown-menu {
  visibility: visible;
  opacity: 1;
  max-height: 999px;
  transform: translate3d(0, 0, 0);
}

.dropdown-menu {
  padding: 10px !important;
  font-size: 13px;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(138, 155, 165, 0.15);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 0.2s linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: rgba(129, 103, 169, 0.6);
}

/* ========== Blog Section ========== */
.blog_section {
  padding: 5rem 0 3rem;
}

.blog_section .blog_item {
  margin-bottom: 30px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 11px rgba(6, 22, 58, 0.14);
  transition: 0.3s;
}

.blog_section .blog_item:hover .blog_image img {
  transform: scale(1.1);
}

.blog_image img {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.blog_image span i {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  width: 38px;
  height: 45px;
  padding-top: 7px;
  text-align: center;
  right: 20px;
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
  background-color: #ff5e14;
}

.blog_details {
  padding: 25px 20px 30px;
}

.blog_details h5 a {
  color: #020d26;
  font-size: 25px;
  line-height: 32px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}

.blog_details h5 a:hover {
  color: #ff5e14;
}

.blog_details ul {
  padding: 0 3px 10px 0;
  margin: 0;
}

.blog_details ul li {
  display: inline-block;
  padding-right: 15px;
  color: #7f7f7f;
}

.blog_details ul li i {
  padding-right: 7px;
}

.blog_details p {
  border-top: 1px solid #e5e5e5;
  margin-top: 4px;
  padding: 20px 0 4px;
}

.blog_details a {
  font-size: 16px;
  color: #ff5e14;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.blog_details a:hover {
  color: #020d26;
}

.blog_details a i {
  vertical-align: middle;
  font-size: 20px;
}

/* ========== Owl Navigation ========== */
.owl-prev, .owl-next {
  position: absolute;
  top: 33%;
  width: 40px;
  height: 40px;
  border: 5px solid #fff;
  border-radius: 50%;
  text-align: center;
  background: #ff5e14;
  color: #fff;
  transition: all 0.3s;
  z-index: 5;
}

.owl-prev {
  left: -27px;
}

.owl-next {
  right: -27px;
}

.owl-prev span, .owl-next span {
  font-size: 25px;
  display: inline-block;
  margin-top: -6px;
}

.owl-prev:hover, .owl-next:hover {
  background: #fff;
  color: #ff5e14;
  border-color: #ff5e14;
}

/* ========== Footer ========== */
footer {
  padding-top: 50px;
  color: #fff;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li a {
  display: block;
  padding: 5px 0;
  color: #efefef;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #c3e0ff;
  text-decoration: none;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

footer p {
  color: #efefef;
  padding: 10px 0;
  margin: 0;
}

footer i {
  font-size: 13px;
  color: #343a40;
  margin: 3px 5px;
  background: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 6px 0;
}

.copyright-txt {
  background: rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

/* ========== Media Queries ========== */
@media (max-width: 992px) {
  .carousel {
    height: 200px !important;
  }

  .profile-head {
    margin-top: 0 !important;
    height: auto;
  }
}

@media (max-width: 767px) {
  .noticeview_menu {
    visibility: hidden;
    display: none;
    clear: both;
  }

  .mainPitch {
    top: 0 !important;
    clear: both;
  }

  #header_img {
    height: 100% !important;
    width: 100% !important;
  }

  h1 {
    font-size: 38px;
  }

  .nav-item::after {
    display: none;
  }

  .nav-item::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    background-color: #000;
  }

  .dropdown-toggle::after {
    content: "";
    position: absolute;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    background-color: #000;
    transition: all 0.2s linear;
  }

  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
    opacity: 0;
  }

  .dropdown-menu {
    padding: 0 !important;
    background: transparent;
    box-shadow: none;
  }

  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin: 10px 0 20px;
  }

  body.dark .nav-item::before,
  body.dark .dropdown-toggle::after {
    background-color: #fff;
  }
}
