.hvrbox, .hvrbox * {
  box-sizing: border-box;
}

.hvrbox {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.hvrbox img {
  max-width: 100%;
}

.hvrbox_background {
  width: 400px;
  height: 250px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hvrbox .hvrbox-layer_bottom {
  display: block;
}

.hvrbox .hvrbox-layer_top {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.hvrbox:hover .hvrbox-layer_top, .hvrbox.active .hvrbox-layer_top {
  opacity: 1;
}

.hvrbox .hvrbox-text {
  width: 90%;
  line-height: 1.8;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hvrbox .hvrbox-text_mobile {
  font-size: 15px;
  border-top: 1px solid rgb(179, 179, 179);
  /* for old browsers */
  border-top: 1px solid rgba(179, 179, 179, 0.7);
  margin-top: 5px;
  padding-top: 2px;
  display: none;
}

.hvrbox.active .hvrbox-text_mobile {
  display: block;
}

.hvrbox .hvrbox-layer_image {
  padding: 0;
  background: none;
}

.hvrbox .hvrbox-layer_slideup {
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.hvrbox:hover .hvrbox-layer_slideup, .hvrbox.active .hvrbox-layer_slideup {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.hvrbox .hvrbox-layer_slidedown {
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hvrbox:hover .hvrbox-layer_slidedown, .hvrbox.active .hvrbox-layer_slidedown {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.hvrbox .hvrbox-layer_slideleft {
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.hvrbox:hover .hvrbox-layer_slideleft, .hvrbox.active .hvrbox-layer_slideleft {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.hvrbox .hvrbox-layer_slideright {
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hvrbox:hover .hvrbox-layer_slideright, .hvrbox.active .hvrbox-layer_slideright {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.hvrbox .hvrbox-layer_scale {
  border-radius: 50%;
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.hvrbox:hover .hvrbox-layer_scale, .hvrbox.active .hvrbox-layer_scale {
  border-radius: 0%;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hvrbox .hvrbox-layer_rotate {
  border-radius: 50%;
  -moz-transform: rotateZ(0);
  -webkit-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  transform: rotateZ(0);
}

.hvrbox:hover .hvrbox-layer_rotate, .hvrbox.active .hvrbox-layer_rotate {
  border-radius: 0%;
  -moz-transform: rotateZ(360deg);
  -webkit-transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

.hvrbox .hvrbox-layer_scale-rotate {
  border-radius: 50%;
  -moz-transform: scale(0) rotateZ(0);
  -webkit-transform: scale(0) rotateZ(0);
  -ms-transform: scale(0) rotateZ(0);
  transform: scale(0) rotateZ(0);
}

.hvrbox:hover .hvrbox-layer_scale-rotate, .hvrbox.active .hvrbox-layer_scale-rotate {
  border-radius: 0%;
  -moz-transform: scale(1) rotateZ(360deg);
  -webkit-transform: scale(1) rotateZ(360deg);
  -ms-transform: scale(1) rotateZ(360deg);
  transform: scale(1) rotateZ(360deg);
}

/* testimonials  */

.testimonial {
  margin: 0 20px 50px;
}

.testimonial .pic {
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 15px 15px 0;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.testimonial .testimonial-profile {
  display: inline-block;
  position: relative;
  top: 15px;
}

.testimonial .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #2f2f2f;
  text-transform: capitalize;
  margin: 0 0 7px 0;
}

.testimonial .post {
  display: block;
  font-size: 14px;
  color: rgb(51, 51, 51);
}

.testimonial .description {
  padding: 20px 22px;
  background: white;
  font-size: 15px;
  color: #413f3f;
  line-height: 25px;
  margin: 0;
  position: relative;
  border: 2px solid rgb(132, 132, 132);
  margin: 1.5em 0;
}

.testimonial .description:before {
  /* border-width: 15px 18px 0px 0px;
    border-style: solid;
    border-color: #848484 transparent transparent; */
  content: "";
  position: absolute;
  bottom: -8px;
  left: 40px;
  width: 22px;
  height: 18px;
  background: white;
  border: 2px solid rgb(132, 132, 132);
  z-index: -20;
  transform: rotate(-32deg);
}

.testimonial .description:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 38px;
  width: 28px;
  height: 28px;
  background: white;
  border: 2px solid transparent;
  z-index: 1;
  transform: rotate(-30deg);
}

.owl-theme .owl-controls {
  margin-top: 0px;
  margin-left: 0px;
}

.owl-theme .owl-controls .owl-buttons div {
  opacity: 0.8;
  background: #fff;
}

.owl-prev:before, .owl-next:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: rgb(51, 51, 51);
}

.owl-next:before {
  content: "\f054";
}

/* faq accordion */

._accordion .card {
  border-radius: 0;
  margin: 0.6em 0;
  border: 0;
}

._accordion .card-header {
  padding: 0;
  border: 0;
  background: white;
}

._qstn {
  margin: 0;
}

._qstn a {
  display: block;
  position: relative;
  padding: 0.6em 1em;
  text-decoration: none;
  margin: 0.6em;
  border: 1px dashed #ec268f;
}

._qstn a:after {
  content: "\f0fe";
  /*  fa-plus-square */
  font-family: 'FontAwesome';
  position: absolute;
  top: 8px;
  right: 0;
  color: #ec268f;
  font-size: 20px;
  padding-right: 0.8em;
}

._qstn a[aria-expanded="true"]:after {
  content: "\f146";
  /* fa-chevron-up */
}

/* footer icons  */

.icon-button {
  background-color: white;
  border-radius: 2.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 2.0rem;
  height: 2.6rem;
  line-height: 2.6rem;
  margin: 0 5px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 2.6rem;
}

/* Circle */

.icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
  background-color: #ec268f;
}

.icon-button:hover span {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 2.6rem;
  margin: -1.35rem;
}

/* Icons */

.icon-button i {
  background: none;
  color: white;
  height: 2.6rem;
  left: 0;
  line-height: 2.6rem;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 2.6rem;
  z-index: 10;
}

.icon-button .fa {
  color: #ec268f;
  font-size: 20px;
}

.icon-button:hover .fa {
  color: white;
}

#goTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  opacity: .8;
  border: none;
  outline: none;
  cursor: pointer;
  width: 38px;
  height: 35px;
  background: #ec268f;
}

#goTop:hover {
  opacity: 1;
}

#goTop i.fa {
  /* font-size: 1.5em;
  color: white; */
  font-size: 1.2em;
  color: white;
  border: 1px solid white;
  padding: 6px;
  line-height: 0.6;
}

/* EnquiryForm */

.enquiry_form .form-group {
  margin-bottom: 1.4rem;
  position: relative;
}

.enquiry_form .form-group .valid-feedback {
  color: #01af0194;
  text-align: left;
  padding-left: 5px;
}

.enquiry_form .form-group .invalid-feedback {
  color: red;
  text-align: left;
  padding-left: 5px;
}

.enquiry_form .form-group>div {
  position: absolute;
  width: 250px;
  text-align: center;
  bottom: -16px;
  color: white;
}

.enquiry_form input.form-control, .enquiry_form textarea.form-control {
  font-size: 14px;
  border-radius: 0;
  padding: 1.6em 1em;
}

.enquiry_form input.form-control:focus, .enquiry_form textarea.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.md_6 {
  display: inline-block;
  width: 47%;
}

.md_6._ryt {
  margin-left: 5%;
}
.enquiry_form {
  margin-top: 1em;
}
.btn_submit {
  display: block;
  text-align: center;
  width: 100%;
  background: black;
  color: white;
  padding: .8em;
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-box-shadow: inset 0px 0px 0px 0px white;
  box-shadow: inset 0px 0px 0px 0px white;
  border: 8px solid #000000;
}
.btn_submit:hover{
  color: white;
  -webkit-box-shadow: inset 0px 0px 0px 1px white;
  box-shadow: inset 0px 0px 0px 1px white;    
}
.btn.focus, .btn:focus {
  -webkit-box-shadow: inset 0px 0px 0px 1px white;
  box-shadow: inset 0px 0px 0px 1px white; 
}
/* ANIMATIONS  */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes flipInX {
  0% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  }
  40% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  }
  60% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  opacity: 1;
  }
  80% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
  -webkit-transform: perspective(400px);
  transform: perspective(400px);
  }
  }
  @keyframes flipInX {
  0% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  }
  40% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  }
  60% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  opacity: 1;
  }
  80% {
  -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
  -webkit-transform: perspective(400px);
  transform: perspective(400px);
  }
  } 
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(80%, 0, 0);
    transform: translate3d(80%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(80%, 0, 0);
    transform: translate3d(80%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  animation-duration: 2s;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-80%, 0, 0);
    transform: translate3d(-80%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-80%, 0, 0);
    transform: translate3d(-80%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
  animation-duration: 1s;
  /* animation-delay: 2.3s; */
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  animation-duration: .5s;
  animation-delay: 1.5s;
  animation-iteration-count: 2;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  animation-duration: 1.5s;
}


.ml-5em {
    margin-left: 5em;
}

.shape {
    position: fixed;
    top: -2em;
    right: 5px;
    z-index: 9999;
}
.bg-shape {
	position: relative;
}
.ribben-shape {
    width: 150px;
}
.bg-sub-shape {
    position: absolute;
    text-align: center;
    top: 20px;
}
.bg-sub-shape img {
    width: 115px;
    margin-top: 20px;
}
.bg-sub-shape p {
    color: #9D2900;
    padding: 10px 18px;
    margin-top: 0px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
}




.reg_label {
    display: flex;
    justify-content: space-around;
    align-items: center;
    direction: rtl;
    background-color: #fff;
    top: 0;
    position: fixed;
    flex-direction: column;
    z-index: 100;
    right: 8rem;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 1px 2px 14px 5px rgb(0 0 0 / 18%);
    padding: 5px 0;
    width: 200px;
    text-align: center;
    /* display: none; */
    border: 3px solid #9D2900;
}
.reg_label label { 
	margin-bottom: 0.1rem;
}
.reg_label label a { 
	color: #051138 !important;
}
.penvir_times_icon_absolute {
    position: absolute;
    top: 18px;
    right: 2.5em;
}
.fixed-me .penvir_times_icon_absolute {
    position: absolute;
    right: 10em;
}
	
@media (max-width: 767px) {

	.reg_label {
		top: 100px;
		position: fixed;
		flex-direction: row;
		right: -74%;
		border-bottom-right-radius: 0%;
		border-bottom-left-radius: 0%;
		width: 90%;
		transition: all .3s;
	}
	.reg_label.ryt0 {
		right: 0;
	}
	.hhcl_logo {
		width: 160px;
	}
	.ml-5em {
		margin-left: 0;
	}
}