.menu-item-has-children .rework .sub-menu{
  position: absolute !important;
  right: -250px !important;
  width: 250px !important;
}

@media(max-width:767px){
  .menu-item-has-children .rework .sub-menu{
  position: absolute !important;
  right: 0px !important;
  width: 250px !important;
}
}
:root {
  --secondary-color: #f88c48;
  --blue-color: #093e67;
}

.blue{
  color: var(--blue-color);
}

.orange {
  color: var(--secondary-color);
}

.hover-img {
  width: 300px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  border-radius: 10px;
}

.hover-img:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-text {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1.5s ease forwards;
  animation-delay: 0.5s;
  /* starts after image */
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
}

.d-flex-start {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: justify;
}

/* breadcrum */
.rs-breadcrumbs .breadcrumbs-img img {
  height: 250px !important;
}

.breadcrumbs-img {
  position: relative;
}

.breadcrumbs-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 51, 59, 0.6);
  /* overlay color (blue with 60% opacity) */
  z-index: 1;
}

.breadcrumbs-text {
  position: relative;
  z-index: 2;
}

p {
  text-align: justify;
}

.copyright {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.rs-categories.style1 .categories-item{
  border-radius: 30px !important;
}

.rs-categories.style1 .categories-item:hover{
  border: 1px solid white !important;
}

@media(max-width:767px) {

  /* breadcrum */
  .rs-breadcrumbs .breadcrumbs-img img {
    height: 170px !important;
  }
  .rs-menu-toggle{
    font-size: 27px !important;
  }

  .mobile-logo img{
    max-height: 78px !important;
  }
  .full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a{
    font-size: 17px !important;
  }
}