.login_form_inner h3 {
    color: #222;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px!important;
}
a:hover {
    color: rgb(255, 255, 255) !important;
  }
.hover-black:hover {
    color: #384aeb !important;
  }

  .login_box_area .login_box_img:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: url('../img/bgres.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat  !important;
    background-position: center center  !important;
    opacity:none !important;
}

.button-account{
    padding:7px 42px;
    background:transparent;
    border-color:#c5322d;
    color: #000000!important;
}
.button-account:hover{
    border-color:#fff !important
}

.login_box_area .login_box_img .hover h4 {
    font-size: 24px;
    color: #000000 !important;
    font-weight: 500;
    margin-bottom: 15px;
}

.login_box_area .login_box_img .hover p {
    max-width: 390px;
    margin: 0px auto 28px;
    color: rgb(0, 0, 0)!important;
}

.box-center {
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
}

@media (max-width: 480px) {
    .box-center {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
        
}

@media (max-width: 767.98px) {
    .box-center {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
     }
     .register_form_inner {
        padding-top: 100px!important;
    }

    .box-part{
        background:#eeeeee;
        padding:20px 10px;
        margin:30px 0px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .box-partcategory {
        position: relative
    }
    
    .box-partcategory::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        transform: translateY(50px);
        opacity: 0;
        transition: all .4s ease
    }
    
    .box-partcategoryOverlay {
        background: #384aeb;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px 5px;
	transform: translateY(30px);
	opacity: 0;
	z-index: -1;
	transition: all .48s ease
    }

    .box-partcategoryOverlay h3 {
        font-size: 20px;
        font-weight: 400;
        color: #fff;
        text-align: center;
    }
    
    .box-partcategoryOverlay p {
        color: #fff;
        margin: 0
    }
    
    .box-partcategory:hover::after {
        transform: translateY(0);
        opacity: 1
    }
    
    .box-partcategory:hover .box-partcategoryOverlay {
        transform: translateY(0);
        opacity: 1;
        z-index: 2
    }

    .banner {
        position: relative;
        overflow: hidden;
        background: #fff;
        background: url(../img/bgres.png) no-repeat;
        background-size: cover;
        min-height: 400px;

    }

    .features {
        margin-top: -50px;
    }

    .divider {
        width: 40px;
        height: 5px;
        background: #c5322d;
    }


    .product-offer {
        position: relative;
        overflow: hidden;
      }
      
      .product-offer img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
      }
      
      .product-offer:hover img {
        transform: scale(1.2) rotate(5deg);
      }
      
      .product-offer .offer-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(61, 70, 77, 0.5);
        z-index: 1;
      }

      .mb-30 {
        margin-bottom: 30px;
      }

    /* banner css */
    .carousel {
        position: relative;
      }
      
      .carousel.pointer-event {
        touch-action: pan-y;
      }
      
      .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
      }
      
      .carousel-inner::after {
        display: block;
        clear: both;
        content: "";
      }
      
      .carousel-item {
        position: relative;
        display: none;
        float: left;
        width: 100%;
        margin-right: -100%;
        backface-visibility: hidden;
        transition: transform 0.6s ease-in-out;
      }
      
      @media (prefers-reduced-motion: reduce) {
        .carousel-item {
          transition: none;
        }
      }
      
      .carousel-item.active,
      .carousel-item-next,
      .carousel-item-prev {
        display: block;
      }
      
      .carousel-item-next:not(.carousel-item-left),
      .active.carousel-item-right {
        transform: translateX(100%);
      }
      
      .carousel-item-prev:not(.carousel-item-right),
      .active.carousel-item-left {
        transform: translateX(-100%);
      }
      
      .carousel-fade .carousel-item {
        opacity: 0;
        transition-property: opacity;
        transform: none;
      }
      
      .carousel-fade .carousel-item.active,
      .carousel-fade .carousel-item-next.carousel-item-left,
      .carousel-fade .carousel-item-prev.carousel-item-right {
        z-index: 1;
        opacity: 1;
      }
      
      .carousel-fade .active.carousel-item-left,
      .carousel-fade .active.carousel-item-right {
        z-index: 0;
        opacity: 0;
        transition: opacity 0s 0.6s;
      }
      
      @media (prefers-reduced-motion: reduce) {
        .carousel-fade .active.carousel-item-left,
        .carousel-fade .active.carousel-item-right {
          transition: none;
        }
      }
      
      .carousel-control-prev,
      .carousel-control-next {
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 15%;
        color: #fff;
        text-align: center;
        opacity: 0.5;
        transition: opacity 0.15s ease;
      }
      
      @media (prefers-reduced-motion: reduce) {
        .carousel-control-prev,
        .carousel-control-next {
          transition: none;
        }
      }
      
      .carousel-control-prev:hover, .carousel-control-prev:focus,
      .carousel-control-next:hover,
      .carousel-control-next:focus {
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: 0.9;
      }
      
      .carousel-control-prev {
        left: 0;
      }
      
      .carousel-control-next {
        right: 0;
      }
      
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: no-repeat 50% / 100% 100%;
      }
      
      .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
      }
      
      .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
      }
      
      .carousel-indicators {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 15;
        display: flex;
        justify-content: center;
        padding-left: 0;
        margin-right: 15%;
        margin-left: 15%;
        list-style: none;
      }
      
      .carousel-indicators li {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity 0.6s ease;
      }
      
      @media (prefers-reduced-motion: reduce) {
        .carousel-indicators li {
          transition: none;
        }
      }
      
      .carousel-indicators .active {
        opacity: 1;
      }
      
      .carousel-caption {
        position: absolute;
        right: 15%;
        bottom: 20px;
        left: 15%;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: center;
      }

      /* owl carousel */
#popularpackageCarousel .owl-prev,
#popularpackageCarousel .owl-next {
	width: 40px;
	height: 40px;
	background: #f1f6f7
}

#popularpackageCarousel .owl-prev i,
#popularpackageCarousel .owl-prev span,
#popularpackageCarousel .owl-next i,
#popularpackageCarousel .owl-next span {
	font-size: 15px;
	color: #384aeb;
	line-height: 40px
}

#popularpackageCarousel .owl-prev:hover,
#popularpackageCarousel .owl-next:hover {
	background: #384aeb
}

#popularpackageCarousel .owl-prev:hover i,
#popularpackageCarousel .owl-prev:hover span,
#popularpackageCarousel .owl-next:hover i,
#popularpackageCarousel .owl-next:hover span {
	color: #fff
}

#popularpackageCarousel .owl-prev {
	position: absolute;
	top: 30%;
	transform: translateY(-30%);
	left: -20px
}

@media (min-width: 1340px) {
	#popularpackageCarousel .owl-prev {
		left: -105px
	}
}

#popularpackageCarousel .owl-next {
	position: absolute;
	top: 30%;
	transform: translateY(-30%);
	right: -20px
}

@media (min-width: 1340px) {
	#popularpackageCarousel .owl-next {
		right: -105px
	}
}


/* Upcoming Event */
 /* owl carousel */
 #upcomingAppointment .owl-prev,
 #upcomingAppointment .owl-next {
     width: 40px;
     height: 40px;
     background: #f1f6f7
 }
 
 #upcomingAppointment .owl-prev i,
 #upcomingAppointment .owl-prev span,
 #upcomingAppointment .owl-next i,
 #upcomingAppointment .owl-next span {
     font-size: 15px;
     color: #384aeb;
     line-height: 40px
 }
 
 #upcomingAppointment .owl-prev:hover,
 #upcomingAppointment .owl-next:hover {
     background: #384aeb
 }
 
 #upcomingAppointment .owl-prev:hover i,
 #upcomingAppointment .owl-prev:hover span,
 #upcomingAppointment .owl-next:hover i,
 #upcomingAppointment .owl-next:hover span {
     color: #fff
 }
 
 #upcomingAppointment .owl-prev {
     position: absolute;
     top: 30%;
     transform: translateY(-30%);
     left: -20px
 }
 
 @media (min-width: 1340px) {
     #upcomingAppointment .owl-prev {
         left: -105px
     }
 }
 
 #upcomingAppointment .owl-next {
     position: absolute;
     top: 30%;
     transform: translateY(-30%);
     right: -20px
 }
 
 @media (min-width: 1340px) {
     #upcomingAppointment .owl-next {
         right: -105px
     }
 }



