/* =====================
    SECTION: Top Bar
    ====================== */
.top__bar {
  position: relative;
  z-index: 1;
  /* background-image: var(--grad-main); */
  background: var(--primary-color);
}

/* =====================
    SECTION: HEAD
    ====================== */

.head_iconbox_head {
  display: flex;
  align-items: center;
  gap: 3px;
}

.head_iconbox_icon {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  padding: 10px;
  filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(355deg) brightness(108%) contrast(101%);
}

.head_iconbox_head p {
  font-size: 13px;
  line-height: 18px;
}

/* .top__bar::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.1;
    background: url(../images/bg/header.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  } */

/* .top__img img{
    width: 40px !important;
  } */

/* =====================
      SECTION: Header
      ====================== */

header.sticky-lg-top {
  z-index: 1021;
}

.menu__bar {
  background: var(--secondary-color);
  /* background-image: var(--grad-main); */
}

.menu__bar .dropdown {
  position: initial;
}

.menu__bar .nav-link {
  color: var(--bs-light);
  border-right: 1px solid rgba(var(--accent-color-rgb), 0.2);
}

/* Remove right border from the last .nav-link */
.navbar-nav .nav-item:last-child .nav-link {
  border-right: none;
}

.menu__bar .nav-link:hover {
  background: rgba(var(--secondary-color-rgb), 0.7);
}

.menu__bar .dropdown-menu {
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  top: 100%;
  left: inherit;
  min-width: 270px;
}

@media (hover: hover) {
  .menu__bar .dropdown-menu {
    display: block;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 300ms ease-in-out;
    transition-delay: 150ms;
  }

  .menu__bar .dropdown:hover>.dropdown-menu {
    transition-delay: 0s;
    opacity: 1;
    transform: scaleY(1);
  }
}

.menu__bar .mega-menu .dropdown-menu {
  left: 0.5rem;
  width: calc(100% - 1rem);
}

.menu__bar .dropdown-toggle::after {
  font-family: "bootstrap-icons";
  content: "\F282";
  border: none;
  vertical-align: middle;
  font-size: 0.625rem;
  font-weight: bold;
}

.menu__bar .dropdown-item {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 500;
  padding-block: 0.75rem;
  margin-block: 0.25rem;
  position: relative;
  white-space: inherit;
  border-bottom: 1px solid #eee;
}

.menu__bar li:last-child .dropdown-item {
  border-bottom: 0px;
}

.menu__bar .dropdown-item:hover {
  background: var(--secondary-color);
  color: var(--bs-light);
  transition: 300ms ease-in-out;
}

.menu__bar :is(.dropend, .dropstart) .dropdown-toggle {
  color: inherit;
  text-decoration: none;
}

.menu__bar .dropend .dropdown-toggle::after {
  font-family: "bootstrap-icons";
  content: "\F285";
  border: none;
  vertical-align: middle;
  font-size: 0.625rem;
  font-weight: bold;
}

.menu__bar .dropstart .dropdown-toggle::before {
  font-family: "bootstrap-icons";
  content: "\F284";
  border: none;
  vertical-align: middle;
  font-size: 0.625rem;
  font-weight: bold;
}

@media (hover: hover) {
  .menu__bar .dropend .dropdown-menu {
    transform: scaleX(0);
    transform-origin: left center;
    top: 0;
    right: auto;
    left: 100%;
    z-index: 1111;
  }

  .menu__bar .dropstart .dropdown-menu {
    transform: scaleX(0);
    transform-origin: right center;
    top: 0;
    right: 100%;
    left: auto;
    z-index: 1111;
  }

  .menu__bar .dropend:hover>.dropdown-menu {
    transform: scaleX(1);
    opacity: 1;
  }

  .menu__bar .dropstart:hover>.dropdown-menu {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* =====================
      SECTION: Footer
      ====================== */
/* footer {
    margin-top: auto;
    background: rgb(var(--primary-color-rgb));
  } */

footer {
  margin-top: auto;
  background: #0B358E;
  color: #fff;
  margin-top: auto;
  position: relative;
  isolation: isolate;
}


.footer__container {
  position: relative;
}

.footer__container .container {
  border-bottom: 1px solid rgb(255 255 255 / 27%);
  border-bottom: 2px solid rgb(255 215 0 / 27%);
}

.footer__info .list-group {
  --bs-list-group-bg: transparent;
  --bs-list-group-border-color: color-mix(in srgb,
      var(--primary-color) 75%,
      var(--bs-body-bg) 25%);
  margin-top: 1rem;
}

.footer__info .list-group .bi {
  color: var(--bs-light);
}

.footer__widget .footer__title {
  color: #fff;
}

.footer__cpr {
  color: var(--bs-light);
}

.footer__container .nav-item {
  padding: 6px 8px;
}

.footer__container .nav-link {
  color: #fff;
}

.footer__cpr a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer_ql {
  color: #fff;
  padding: 0px 15px;
  /*box-shadow: inset 0px 0px 0px 20px rgb(255 255 255 / 6%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.29);
    font-weight: normal;
    display: inline-block;
    margin-bottom: 10px; */
}

footer .list-items li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--bs-light);
}

footer .list-items li i {
  color: var(--bs-light);
}

.social-media {
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 15px;
  justify-content: start;
}

.social-media li a {
  display: flex;
  align-items: center;
  color: white;
  gap: 10px;
}

ul.social-media i {
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 22px;
  color: var(--bs-light);
  border-radius: 50%;
  transition: 0.3s linear;
}

ul.social-media a:hover i {
  transform: rotateY(360deg);
}

.footer-social-address {
  background: url(../images/bg/footer1.webp) 0% 0% / cover no-repeat;
  padding: 36px 66px 20px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.footer-social-icon {
  text-align: center;
}

.footer-social-icon ul li.text {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 600;
  margin-right: 9px;
}

.footer-social-icon ul li {
  display: inline-block;
}

.footer-social-icon ul li i {
  display: inline-block;
  font-size: 16px;
  color: rgb(255, 255, 255);
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 1;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
  margin: 0px 3px;
  transition: 0.5s;
}

.footer-social-icon ul li i:hover {
  color: rgb(73, 174, 68);
}

.footer-social-icon ul li i::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transform: scaleY(0);
  background: rgb(255, 255, 255);
  border-radius: 50%;
  transition: 0.1s;
}

.footer-social-icon ul li i:hover::after {
  transform: scale(1);
}

.form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #ffffff;
  background-color: transparent !important;
  color: #fff !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.form-control:focus {
  border-bottom: 1px solid var(--accent-color);
}

.form-control:focus::placeholder {
  color: transparent;
}

.list-items a {
  text-decoration: none;
  color: #fff;
}

.list-items a:hover {
  color: var(--accent-color);
}

.contacts a {
  text-decoration: none;
}


.contacts a:hover {
  color: var(--accent-color);
}

/*  */

.sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.sidebar a {
  /* background: var(--accent-color); */
  /* border-radius: 50px; */
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 54px;
  height: 54px;
  text-decoration: none;
  color: inherit;
  transition: width 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.sidebar a:hover {
  width: 250px;
}

.icon {
  flex: 0 0 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 34px;
}

.label {
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  transition: opacity 0.2s ease;
  color: var(--bs-dark);
  font-size: 16px;
  font-weight: bold;
}

.sidebar a:hover .label {
  opacity: 1;
  transition-delay: 0.1s;
}

.arrow {
  background: var(--primary-color);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.bg-yellow {
  background: #ffe07b;
}

.bg-green {
  background: #d4f4dd;
}

.bg-blue {
  background: #cce7ff;
}

.bg-pink {
  background: #ffe0e6;
}

/* =====================
      SECTION: Breadcrumb
      ====================== */
.breadcrumb__sc {
  background: linear-gradient(rgba(var(--primary-color-rgb), 0.7),
      rgba(var(--primary-color-rgb), 0.7)),
    url("../images/breadcrumb-bg.webp") no-repeat center/cover;
  /* background: linear-gradient(rgb(36 11 142 / 90%), rgb(99 11 142 / 90%)),
    url(../images/breadcrumb-bg.webp) no-repeat center / cover; */
  /* padding-block: clamp(3rem, calc(3rem + 1.5vw), 5rem); */
  padding-block: clamp(6rem, calc(3rem + 1.5vw), 10rem);
  position: relative;
  color: #fff;
}

.breadcrumb__sc .breadcrumb {
  background: var(--bs-body-bg);
  width: max-content;
  display: inline-flex;
  padding: 0.5rem 2rem;
  border-radius: 50vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.breadcrumb__sc .breadcrumb-item {
  color: var(--primary-color);
}

.breadcrumb__sc .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* =====================
    SECTION: Buttons
    ====================== */
.btn {
  padding: var(--button-padding-y) var(--button-padding-x);
}

.btn-lg {
  padding: calc(var(--button-padding-y) * 1.25) calc(var(--button-padding-x) * 2);
}

.btn-sm {
  padding: calc(var(--button-padding-y) / 2) calc(var(--button-padding-x) / 2);
}

.btn-main {
  background: var(--primary-color);
  color: var(--bs-light);
  transition: color 250ms ease-in-out;
}

.btn-main:hover {
  color: var(--bs-white);
}

.btn-main-outline {
  color: var(--primary-color);
  transition: 250ms ease-in-out;
  border: 1px solid currentColor;
}

.btn-main-outline:hover {
  color: #fff;
  background: var(--primary-color);
}

.btn-alt {
  background: radial-gradient(circle farthest-corner at 6.3% 21.8%,
      rgba(var(--secondary-color-rgb), 1) 0%,
      rgba(var(--primary-color-rgb), 1) 90%);
  color: var(--bs-light);
  border: none;
}

.btn-alt:hover {
  background: rgba(var(--secondary-color-rgb), 0.85);
  border-color: rgba(var(--secondary-color-rgb), 0.85);
}

/*  */

.btn-icon {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  padding: 10px 24px 10px 15px;
  color: var(--bs-light);
}

.btn-icon .right-icon {
  margin: -11px -20px -11px 15px;
}

.btn-icon .right-icon {
  height: 30px;
  min-width: 30px;
  background-color: #fff;
  border-radius: 10px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(1px);
}

.btn-icon:hover .right-icon i {
  animation: toRightFromLeft 0.5s forwards;
}

@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes left-image-bounce {
  0% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(-5px);
  }
}

@keyframes right-image-bounce {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/* =====================
    SECTION: Custom
    ====================== */
body.tox-fullscreen :not([class*="tox"]) {
  position: static !important;
}

.emergency_btn {
  text-decoration: none;
  color: #096223;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eeeeee;
  border-radius: 100px;
  padding: 10px 20px;
}