/*-- hero 1 -- */
/*-- Base: mixin & variable  -- */
.orea-hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Hero style 1 */
.orea-hero-section.style-1 {
  padding: 30px 30px 0px 30px;
}
.orea-hero-section.style-1 .container {
  height: 100%;
}
.orea-hero-section.style-1 .hero-main-wrapper {
  border-radius: 30px;
  overflow: hidden;
  height: 850px;
  position: relative;
  width: 100%;
  padding: 50px 20px;
}
.orea-hero-section.style-1 .hero-main-wrapper:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4745098039);
  display: none;
}
.orea-hero-section.style-1 .hero-main-wrapper .bg-image,
.orea-hero-section.style-1 .hero-main-wrapper .bg-video {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.orea-hero-section.style-1 .hero-text-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.orea-hero-section.style-1 .hero-text-wrapper .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 680px;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.orea-hero-section.style-1 .hero-text-wrapper .hero-text p,
.orea-hero-section.style-1 .hero-text-wrapper .hero-text h1 {
  color: #2a1a55;
}
.orea-hero-section.style-1 .hero-text-wrapper .hero-text h1 {
  font-size: 74px;
}
.orea-hero-section.style-1 .hero-text-wrapper .hero-text p {
  font-size: 16px;
  text-transform: uppercase;
}
.orea-hero-section.style-1 .hero-text-wrapper .hero-text .button-wrapper {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.orea-hero-section.style-1 .hero-text-wrapper .hero-text .button-wrapper .white:hover {
  border-color: #ffc107;
}
.orea-hero-section.style-1 .cta-wrapper {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: #ffffff;
  z-index: 2;
  width: 650px;
  max-width: 100%;
  padding: 35px 35px 0 0;
  border-radius: 0px 30px 0px 0px;
  display: none;
}
.orea-hero-section.style-1 .cta-wrapper:before, .orea-hero-section.style-1 .cta-wrapper:after {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  background: transparent;
  border-top: 50px solid #fff;
  border-right: 50px solid #fff;
  border-top-right-radius: 95px 100px;
  transform: scaleY(-1) rotate(-90deg);
}
.orea-hero-section.style-1 .cta-wrapper:before {
  top: -35px;
  left: -50px;
}
.orea-hero-section.style-1 .cta-wrapper:after {
  bottom: -50px;
  right: -35px;
}
.orea-hero-section.style-1 .cta-wrapper .cta-main {
  background-color: #ffc107;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  gap: 20px;
  padding: 20px;
  width: 100%;
  position: relative;
  z-index: 3;
}
.orea-hero-section.style-1 .cta-wrapper .cta-image {
  width: 40%;
  border-radius: 16px;
  overflow: hidden;
}
.orea-hero-section.style-1 .cta-wrapper .cta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-hero-section.style-1 .cta-wrapper .cta-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 70px;
}
.orea-hero-section.style-1 .cta-wrapper .cta-text h3 {
  font-size: 28px;
}
.orea-hero-section.style-1 .cta-wrapper .cta-text p {
  font-size: 16px;
  margin-top: 10px;
}
.orea-hero-section.style-1.text-left .hero-text-wrapper .hero-text {
  left: 0;
  transform: translateY(-50%);
  text-align: left;
}
.orea-hero-section.style-1.text-left .hero-text-wrapper .hero-text .button-wrapper {
  justify-content: flex-start;
}
.orea-hero-section.style-1.text-right .hero-text-wrapper .hero-text {
  left: auto;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}
.orea-hero-section.style-1.text-right .hero-text-wrapper .hero-text .button-wrapper {
  justify-content: flex-end;
}
.orea-hero-section.style-1.background-image .hero-main-wrapper .bg-image {
  display: block;
}
.orea-hero-section.style-1.background-video .hero-main-wrapper .bg-video {
  display: block;
}
.orea-hero-section.style-1.background-solid .hero-main-wrapper {
  background-color: #fbfbff;
}
.orea-hero-section.style-1.background-gradient .hero-main-wrapper {
  background: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-hero-section.style-1.background-image .hero-main-wrapper:before, .orea-hero-section.style-1.background-video .hero-main-wrapper:before {
  display: block;
}
.orea-hero-section.style-1.background-image .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-1.background-image .hero-text-wrapper .hero-text p, .orea-hero-section.style-1.background-video .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-1.background-video .hero-text-wrapper .hero-text p {
  color: #ffffff;
}
.orea-hero-section.style-1.container-active .hero-main-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}
.orea-hero-section.style-1.padding-disable {
  padding: 0;
}
.orea-hero-section.style-1.padding-disable .hero-main-wrapper {
  border-radius: 0;
}
.orea-hero-section.style-1.padding-disable .cta-wrapper:before {
  border: none;
}
.orea-hero-section.style-1.text-bg .hero-text-wrapper .hero-text {
  border-radius: 30px;
  padding: 50px 70px;
  text-align: left;
  background-color: #fbfbff;
}
.orea-hero-section.style-1.text-bg .hero-text-wrapper .hero-text p,
.orea-hero-section.style-1.text-bg .hero-text-wrapper .hero-text h1 {
  color: #2a1a55;
}
.orea-hero-section.style-1.text-bg .hero-text-wrapper .hero-text h1 {
  font-size: 60px;
}
.orea-hero-section.style-1.text-bg .hero-text-wrapper .hero-text .button-wrapper {
  justify-content: flex-start;
}
.orea-hero-section.style-1.text-bg .hero-text-wrapper .hero-text .button-wrapper .white {
  border-color: #ffc107;
}
.orea-hero-section.style-1.cta-enable .cta-wrapper {
  display: block;
}
.orea-hero-section.style-1.cta-enable .hero-text-wrapper .hero-text {
  top: 35%;
}

@media only screen and (max-width: 1399px) {
  .orea-hero-section.style-1 .hero-text-wrapper .hero-text h1 {
    font-size: 50px;
  }
  .orea-hero-section.style-1.text-left, .orea-hero-section.style-1.text-right, .orea-hero-section.style-1.text-center, .orea-hero-section.style-1.container-active {
    padding: 0;
  }
  .orea-hero-section.style-1.text-left .hero-main-wrapper, .orea-hero-section.style-1.text-right .hero-main-wrapper, .orea-hero-section.style-1.text-center .hero-main-wrapper, .orea-hero-section.style-1.container-active .hero-main-wrapper {
    padding: 50px 10px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 991px) {
  .orea-hero-section.style-1 .cta-wrapper {
    width: 550px;
    padding: 30px 30px 0 0;
  }
  .orea-hero-section.style-1 .cta-wrapper .cta-text {
    row-gap: 60px;
  }
  .orea-hero-section.style-1 .cta-wrapper .cta-text h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .orea-hero-section.style-1 {
    padding: 20px 20px 0px 20px;
  }
  .orea-hero-section.style-1 .hero-main-wrapper {
    height: 770px;
  }
  .orea-hero-section.style-1 .hero-text-wrapper .hero-text h1 {
    font-size: 40px;
  }
  .orea-hero-section.style-1 .cta-wrapper {
    width: 450px;
    padding: 25px 25px 0 0;
  }
  .orea-hero-section.style-1 .cta-wrapper .cta-text {
    row-gap: 40px;
  }
  .orea-hero-section.style-1 .cta-wrapper .cta-text h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .orea-hero-section.style-1 {
    padding: 20px 20px 0px 20px;
  }
  .orea-hero-section.style-1 .hero-main-wrapper {
    height: 600px;
    border-radius: 16px;
  }
  .orea-hero-section.style-1 .hero-text-wrapper .hero-text h1 {
    font-size: 31px;
  }
  .orea-hero-section.style-1.cta-enable .cta-wrapper {
    display: none;
  }
  .orea-hero-section.style-1.cta-enable .hero-text-wrapper .hero-text {
    top: 50%;
  }
}
/*-- hero 2 -- */
/*-- Base: mixin & variable  -- */
/* Hero style 2 */
.orea-hero-section.style-2 {
  position: relative;
  overflow: hidden;
}
.orea-hero-section.style-2 .container {
  height: 100%;
}
.orea-hero-section.style-2 .hero-main-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 50px 30px;
}
.orea-hero-section.style-2 .hero-main-wrapper .bg-image,
.orea-hero-section.style-2 .hero-main-wrapper .bg-video {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.orea-hero-section.style-2 .inner-main {
  height: 100%;
  display: flex;
  position: relative;
  gap: 40px;
}
.orea-hero-section.style-2 .hero-text-wrapper {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 2;
  z-index: 2;
  padding: 60px 0px;
}
.orea-hero-section.style-2 .hero-text-wrapper .hero-text {
  width: 100%;
  padding-left: calc((100% - 450px) / 2);
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.orea-hero-section.style-2 .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-2 .hero-text-wrapper .hero-text p {
  color: #2a1a55;
}
.orea-hero-section.style-2 .hero-text-wrapper .hero-text h1 {
  font-size: 64px;
  margin-bottom: 10px;
}
.orea-hero-section.style-2 .hero-text-wrapper .hero-text p {
  font-size: 16px;
  text-transform: uppercase;
}
.orea-hero-section.style-2 .hero-text-wrapper .hero-text .button-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.orea-hero-section.style-2 .hero-text-wrapper .follow-us {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  gap: 20px;
  align-items: center;
}
.orea-hero-section.style-2 .hero-text-wrapper .follow-us h5 {
  font-size: 16px;
  writing-mode: vertical-rl;
}
.orea-hero-section.style-2 .hero-text-wrapper .follow-us span.line {
  width: 1px;
  height: 80px;
  background-color: #2a1a55;
  display: inline-block;
}
.orea-hero-section.style-2 .hero-text-wrapper .follow-us ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.orea-hero-section.style-2 .hero-text-wrapper .follow-us ul li a {
  color: #2a1a55;
}
.orea-hero-section.style-2 .hero-text-wrapper .follow-us ul li a:hover {
  color: #ffc107;
}
.orea-hero-section.style-2 .hero-text-wrapper .counter-wrapper {
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 420px;
  margin-top: 60px;
}
.orea-hero-section.style-2 .hero-text-wrapper .counter-wrapper .counter-item h3 {
  font-size: 50px;
}
.orea-hero-section.style-2 .hero-text-wrapper .counter-wrapper .counter-item p {
  margin-top: 0px;
  font-size: 14px;
  text-transform: none;
}
.orea-hero-section.style-2 .hero-image-wrapper {
  width: 50%;
}
.orea-hero-section.style-2 .hero-image-wrapper .hero-image {
  width: 100%;
  height: 750px;
  border-radius: 16px;
  overflow: hidden;
}
.orea-hero-section.style-2 .hero-image-wrapper .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-hero-section.style-2 .bottom-shape-main {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  display: none;
  z-index: 1;
}
.orea-hero-section.style-2.text-left .hero-text-wrapper {
  order: 1;
}
.orea-hero-section.style-2.text-left .hero-image-wrapper {
  order: 2;
}
.orea-hero-section.style-2.text-left.background-image .hero-text-wrapper, .orea-hero-section.style-2.text-left.background-video .hero-text-wrapper, .orea-hero-section.style-2.text-left.background-solid .hero-text-wrapper, .orea-hero-section.style-2.text-left.background-gradient .hero-text-wrapper {
  left: 0;
  transform: translateY(-50%);
  text-align: left;
}
.orea-hero-section.style-2.text-right .hero-text-wrapper {
  order: 2;
}
.orea-hero-section.style-2.text-right .hero-image-wrapper {
  order: 1;
}
.orea-hero-section.style-2.text-right.background-image .hero-text-wrapper, .orea-hero-section.style-2.text-right.background-video .hero-text-wrapper, .orea-hero-section.style-2.text-right.background-solid .hero-text-wrapper, .orea-hero-section.style-2.text-right.background-gradient .hero-text-wrapper {
  left: auto;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}
.orea-hero-section.style-2.text-right.background-image .hero-text-wrapper .hero-text .button-wrapper, .orea-hero-section.style-2.text-right.background-video .hero-text-wrapper .hero-text .button-wrapper, .orea-hero-section.style-2.text-right.background-solid .hero-text-wrapper .hero-text .button-wrapper, .orea-hero-section.style-2.text-right.background-gradient .hero-text-wrapper .hero-text .button-wrapper {
  justify-content: flex-end;
}
.orea-hero-section.style-2.text-right.background-image .hero-text-wrapper .counter-wrapper, .orea-hero-section.style-2.text-right.background-video .hero-text-wrapper .counter-wrapper, .orea-hero-section.style-2.text-right.background-solid .hero-text-wrapper .counter-wrapper, .orea-hero-section.style-2.text-right.background-gradient .hero-text-wrapper .counter-wrapper {
  flex-direction: row-reverse;
  align-self: flex-end;
}
.orea-hero-section.style-2.text-center .hero-text-wrapper .hero-text .button-wrapper {
  justify-content: center;
}
.orea-hero-section.style-2.text-center .hero-text-wrapper .counter-wrapper {
  align-self: center;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper {
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  row-gap: 50px;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .hero-text, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .hero-text, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper .hero-text, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper .hero-text {
  padding: 0;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .hero-text .button-wrapper, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .hero-text .button-wrapper, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper .hero-text .button-wrapper, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper .hero-text .button-wrapper {
  justify-content: center;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper .follow-us, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper .follow-us {
  flex-direction: row;
  position: relative;
  transform: translate(0, 0);
  top: inherit;
  left: auto;
  align-items: center;
  justify-content: center;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us h5, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us h5, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper .follow-us h5, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper .follow-us h5 {
  writing-mode: horizontal-tb;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us span.line, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us span.line, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper .follow-us span.line, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper .follow-us span.line {
  width: 60px;
  height: 1px;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us ul, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us ul, .orea-hero-section.style-2.text-center.background-solid .hero-text-wrapper .follow-us ul, .orea-hero-section.style-2.text-center.background-gradient .hero-text-wrapper .follow-us ul {
  flex-direction: row;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us h5, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us h5 {
  color: #ffffff;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us span.line, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us span.line {
  background-color: #ffffff;
}
.orea-hero-section.style-2.text-center.background-image .hero-text-wrapper .follow-us ul li a, .orea-hero-section.style-2.text-center.background-video .hero-text-wrapper .follow-us ul li a {
  color: #ffffff;
}
.orea-hero-section.style-2.background-image .hero-main-wrapper .bg-image {
  display: block;
}
.orea-hero-section.style-2.background-video .hero-main-wrapper .bg-video {
  display: block;
}
.orea-hero-section.style-2.background-solid {
  background-color: #fbfbff;
}
.orea-hero-section.style-2.background-gradient {
  background: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-hero-section.style-2.background-image .hero-main-wrapper, .orea-hero-section.style-2.background-video .hero-main-wrapper, .orea-hero-section.style-2.background-solid .hero-main-wrapper, .orea-hero-section.style-2.background-gradient .hero-main-wrapper {
  height: 750px;
}
.orea-hero-section.style-2.background-image .hero-text-wrapper, .orea-hero-section.style-2.background-video .hero-text-wrapper, .orea-hero-section.style-2.background-solid .hero-text-wrapper, .orea-hero-section.style-2.background-gradient .hero-text-wrapper {
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}
.orea-hero-section.style-2.background-image .hero-image-wrapper, .orea-hero-section.style-2.background-video .hero-image-wrapper, .orea-hero-section.style-2.background-solid .hero-image-wrapper, .orea-hero-section.style-2.background-gradient .hero-image-wrapper {
  display: none;
}
.orea-hero-section.style-2.background-image.shape-bottom .bottom-shape-main, .orea-hero-section.style-2.background-video.shape-bottom .bottom-shape-main, .orea-hero-section.style-2.background-solid.shape-bottom .bottom-shape-main, .orea-hero-section.style-2.background-gradient.shape-bottom .bottom-shape-main {
  display: block;
}
.orea-hero-section.style-2.background-image .inner-main, .orea-hero-section.style-2.background-video .inner-main {
  flex-wrap: wrap;
}
.orea-hero-section.style-2.background-image .hero-main-wrapper:before, .orea-hero-section.style-2.background-video .hero-main-wrapper:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4745098039);
}
.orea-hero-section.style-2.background-image .hero-text-wrapper, .orea-hero-section.style-2.background-video .hero-text-wrapper {
  width: 100%;
}
.orea-hero-section.style-2.background-image .hero-text-wrapper .hero-text p,
.orea-hero-section.style-2.background-image .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-2.background-image .hero-text-wrapper .hero-text h3, .orea-hero-section.style-2.background-video .hero-text-wrapper .hero-text p,
.orea-hero-section.style-2.background-video .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-2.background-video .hero-text-wrapper .hero-text h3 {
  color: #ffffff;
}
.orea-hero-section.style-2.background-image .hero-text-wrapper .follow-us .line, .orea-hero-section.style-2.background-video .hero-text-wrapper .follow-us .line {
  background-color: #ffffff;
}
.orea-hero-section.style-2.background-image .hero-text-wrapper .follow-us ul li a,
.orea-hero-section.style-2.background-image .hero-text-wrapper .follow-us h5, .orea-hero-section.style-2.background-video .hero-text-wrapper .follow-us ul li a,
.orea-hero-section.style-2.background-video .hero-text-wrapper .follow-us h5 {
  color: #ffffff;
}
.orea-hero-section.style-2.background-image .hero-text-wrapper .follow-us ul li a:hover, .orea-hero-section.style-2.background-video .hero-text-wrapper .follow-us ul li a:hover {
  color: #ffc107;
}
.orea-hero-section.style-2.background-image .hero-image-wrapper, .orea-hero-section.style-2.background-video .hero-image-wrapper {
  width: 100%;
}
.orea-hero-section.style-2.container-active .hero-main-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}
.orea-hero-section.style-2.container-active .hero-text-wrapper {
  width: 50%;
}
.orea-hero-section.style-2.social-none .hero-text-wrapper .follow-us {
  display: none;
}

@media only screen and (max-width: 1399px) {
  .orea-hero-section.style-2 .hero-text-wrapper .hero-text {
    padding-left: 60px;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .hero-text h1 {
    font-size: 50px;
  }
  .orea-hero-section.style-2 .bottom-shape-main {
    bottom: -35px;
  }
}
@media only screen and (max-width: 1199px) {
  .orea-hero-section.style-2 .bottom-shape-main {
    bottom: -25px;
  }
}
@media only screen and (max-width: 991px) {
  .orea-hero-section.style-2 .hero-main-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .hero-text h1 {
    font-size: 40px;
  }
  .orea-hero-section.style-2 .bottom-shape-main {
    bottom: -18px;
  }
}
@media only screen and (max-width: 767px) {
  .orea-hero-section.style-2 .hero-main-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .orea-hero-section.style-2 .inner-main {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .orea-hero-section.style-2 .hero-text-wrapper,
  .orea-hero-section.style-2 .hero-image-wrapper {
    width: 100%;
    padding: 0;
  }
  .orea-hero-section.style-2 .hero-image-wrapper .hero-image {
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  .orea-hero-section.style-2 .hero-text-wrapper {
    align-items: center;
    text-align: center;
    row-gap: 50px;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .hero-text {
    padding: 0;
    text-align: center;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .hero-text h1 {
    font-size: 31px;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .hero-text .button-wrapper {
    justify-content: center !important;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .follow-us {
    flex-direction: row;
    position: relative;
    transform: translate(0, 0);
    top: inherit;
    left: auto;
    align-items: center;
    justify-content: center;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .follow-us h5 {
    writing-mode: horizontal-tb;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .follow-us span.line {
    width: 60px;
    height: 1px;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .follow-us ul {
    flex-direction: row;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .counter-wrapper {
    margin-top: 30px;
    align-self: center !important;
    gap: 30px;
  }
  .orea-hero-section.style-2 .hero-text-wrapper .counter-wrapper .counter-item h3 {
    font-size: 40px;
  }
  .orea-hero-section.style-2 .bottom-shape-main {
    bottom: -10px;
  }
  .orea-hero-section.style-2.background-image .hero-main-wrapper, .orea-hero-section.style-2.background-video .hero-main-wrapper, .orea-hero-section.style-2.background-solid .hero-main-wrapper, .orea-hero-section.style-2.background-gradient .hero-main-wrapper {
    height: 620px;
  }
}
/*-- hero 3  -- */
/*-- Base: mixin & variable  -- */
/* Hero style 3 */
.orea-hero-section.style-3 {
  position: relative;
  overflow: hidden;
}
.orea-hero-section.style-3 .container {
  height: 100%;
}
.orea-hero-section.style-3 .hero-main-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.orea-hero-section.style-3 .hero-main-wrapper .bg-image,
.orea-hero-section.style-3 .hero-main-wrapper .bg-video {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.orea-hero-section.style-3 .inner-main {
  height: 100%;
  display: flex;
  position: relative;
  gap: 40px;
}
.orea-hero-section.style-3 .hero-text-wrapper {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 50px 30px;
  z-index: 2;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-3 .hero-text-wrapper .hero-text p {
  color: #2a1a55;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text h1 {
  font-size: 70px;
  font-weight: 700;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 20px;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper .box-item {
  background-color: #ffc107;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 25%;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper .box-item p {
  font-size: 16px;
  line-height: 1.5em;
  color: #2a1a55;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper .box-item h4 {
  font-size: 16px;
  text-transform: uppercase;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper .box-item + p {
  text-transform: inherit;
  line-height: 1.6em;
  width: 75%;
  font-size: 16px;
  max-width: 550px;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper .event-image img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper .event-image img:nth-child(2) {
  margin-left: -20px;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper .event-image img:nth-child(3) {
  margin-left: -20px;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper p {
  max-width: 180px;
  font-size: 20px;
  font-weight: 600;
}
.orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper p span {
  color: #ffc107;
}
.orea-hero-section.style-3 .hero-image-wrapper {
  width: 50%;
}
.orea-hero-section.style-3 .hero-image-wrapper .hero-image {
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.orea-hero-section.style-3 .hero-image-wrapper .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-hero-section.style-3 .hero-btn {
  background-color: #ffc107;
  padding: 20px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  text-transform: uppercase;
  position: absolute;
  left: 47%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
}
.orea-hero-section.style-3 .hero-btn span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orea-hero-section.style-3 .hero-btn span:nth-child(2) {
  font-size: 22px;
  font-weight: 700;
}
.orea-hero-section.style-3 .hero-btn span:nth-child(2) i {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}
.orea-hero-section.style-3.text-left .hero-text-wrapper {
  order: 1;
}
.orea-hero-section.style-3.text-left .hero-image-wrapper {
  order: 2;
}
.orea-hero-section.style-3.text-left.background-image .hero-text-wrapper, .orea-hero-section.style-3.text-left.background-video .hero-text-wrapper, .orea-hero-section.style-3.text-left.background-solid .hero-text-wrapper, .orea-hero-section.style-3.text-left.background-gradient .hero-text-wrapper {
  left: 0;
  transform: translateY(-50%);
  text-align: left;
}
.orea-hero-section.style-3.text-right .hero-text-wrapper {
  order: 2;
}
.orea-hero-section.style-3.text-right .hero-image-wrapper {
  order: 1;
}
.orea-hero-section.style-3.text-right.background-image .hero-text-wrapper, .orea-hero-section.style-3.text-right.background-video .hero-text-wrapper, .orea-hero-section.style-3.text-right.background-solid .hero-text-wrapper, .orea-hero-section.style-3.text-right.background-gradient .hero-text-wrapper {
  left: auto;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}
.orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .event-wrapper,
.orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .box-wrapper {
  text-align: left;
  justify-content: center;
}
.orea-hero-section.style-3.text-center.background-image .hero-text-wrapper, .orea-hero-section.style-3.text-center.background-video .hero-text-wrapper, .orea-hero-section.style-3.text-center.background-solid .hero-text-wrapper, .orea-hero-section.style-3.text-center.background-gradient .hero-text-wrapper {
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  row-gap: 50px;
}
.orea-hero-section.style-3.background-image .hero-main-wrapper .bg-image {
  display: block;
}
.orea-hero-section.style-3.background-video .hero-main-wrapper .bg-video {
  display: block;
}
.orea-hero-section.style-3.background-solid {
  background-color: #fbfbff;
}
.orea-hero-section.style-3.background-gradient {
  background: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-hero-section.style-3.background-image .hero-main-wrapper, .orea-hero-section.style-3.background-video .hero-main-wrapper, .orea-hero-section.style-3.background-solid .hero-main-wrapper, .orea-hero-section.style-3.background-gradient .hero-main-wrapper {
  height: 750px;
}
.orea-hero-section.style-3.background-image .hero-text-wrapper, .orea-hero-section.style-3.background-video .hero-text-wrapper, .orea-hero-section.style-3.background-solid .hero-text-wrapper, .orea-hero-section.style-3.background-gradient .hero-text-wrapper {
  max-width: 1000px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}
.orea-hero-section.style-3.background-image .hero-image-wrapper, .orea-hero-section.style-3.background-video .hero-image-wrapper, .orea-hero-section.style-3.background-solid .hero-image-wrapper, .orea-hero-section.style-3.background-gradient .hero-image-wrapper {
  display: none;
}
.orea-hero-section.style-3.background-image.text-right .hero-text-wrapper .hero-text, .orea-hero-section.style-3.background-video.text-right .hero-text-wrapper .hero-text, .orea-hero-section.style-3.background-solid.text-right .hero-text-wrapper .hero-text, .orea-hero-section.style-3.background-gradient.text-right .hero-text-wrapper .hero-text {
  text-align: right;
}
.orea-hero-section.style-3.background-image.text-right .hero-text-wrapper .hero-text .box-wrapper,
.orea-hero-section.style-3.background-image.text-right .hero-text-wrapper .hero-text .event-wrapper, .orea-hero-section.style-3.background-video.text-right .hero-text-wrapper .hero-text .box-wrapper,
.orea-hero-section.style-3.background-video.text-right .hero-text-wrapper .hero-text .event-wrapper, .orea-hero-section.style-3.background-solid.text-right .hero-text-wrapper .hero-text .box-wrapper,
.orea-hero-section.style-3.background-solid.text-right .hero-text-wrapper .hero-text .event-wrapper, .orea-hero-section.style-3.background-gradient.text-right .hero-text-wrapper .hero-text .box-wrapper,
.orea-hero-section.style-3.background-gradient.text-right .hero-text-wrapper .hero-text .event-wrapper {
  flex-direction: row-reverse;
}
.orea-hero-section.style-3.background-image .hero-main-wrapper:before, .orea-hero-section.style-3.background-video .hero-main-wrapper:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4745098039);
}
.orea-hero-section.style-3.background-image .hero-text-wrapper .hero-text p,
.orea-hero-section.style-3.background-image .hero-text-wrapper .hero-text h1, .orea-hero-section.style-3.background-video .hero-text-wrapper .hero-text p,
.orea-hero-section.style-3.background-video .hero-text-wrapper .hero-text h1 {
  color: #ffffff;
}
.orea-hero-section.style-3.container-active .hero-text-wrapper {
  width: 50%;
  padding-left: 20px;
}

@media only screen and (max-width: 1399px) {
  .orea-hero-section.style-3 .hero-text-wrapper {
    padding-right: 0;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text h1 {
    font-size: 50px;
  }
  .orea-hero-section.style-3 .hero-btn {
    background-color: #ffc107;
    padding: 15px;
    min-width: 150px;
    row-gap: 30px;
    left: 47%;
    font-size: 14px;
  }
  .orea-hero-section.style-3 .hero-btn span:nth-child(2) {
    font-size: 16px;
  }
  .orea-hero-section.style-3 .hero-btn span:nth-child(2) i {
    font-size: 24px;
  }
  .orea-hero-section.style-3.text-right .hero-text-wrapper {
    padding-left: 0;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .orea-hero-section.style-3 .button-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text h1 {
    font-size: 40px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper {
    gap: 20px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper .event-image img {
    width: 60px;
    height: 60px;
  }
  .orea-hero-section.style-3.text-left .hero-text-wrapper .hero-text, .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text, .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text {
    row-gap: 20px;
  }
  .orea-hero-section.style-3.text-left .hero-text-wrapper .hero-text .box-wrapper, .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text .box-wrapper, .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .box-wrapper {
    flex-wrap: wrap;
  }
  .orea-hero-section.style-3.text-left .hero-text-wrapper .hero-text .box-wrapper .box-item, .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text .box-wrapper .box-item, .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .box-wrapper .box-item {
    width: 200px;
  }
  .orea-hero-section.style-3.text-left .hero-text-wrapper .hero-text .box-wrapper .box-item + p, .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text .box-wrapper .box-item + p, .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .box-wrapper .box-item + p {
    width: 100%;
  }
  .orea-hero-section.style-3.text-left .hero-text-wrapper .hero-text .event-wrapper p, .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text .event-wrapper p, .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .event-wrapper p {
    max-width: 160px;
    font-size: 18px;
  }
  .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .box-wrapper {
    text-align: center;
  }
  .orea-hero-section.style-3.container-active .hero-text-wrapper .hero-text .box-wrapper {
    flex-wrap: wrap;
  }
  .orea-hero-section.style-3.container-active .hero-text-wrapper .hero-text .box-wrapper .box-item {
    width: 200px;
  }
  .orea-hero-section.style-3.container-active .hero-text-wrapper .hero-text .box-wrapper .box-item + p {
    width: 100%;
  }
  .orea-hero-section.style-3.container-active .hero-text-wrapper .hero-text .event-wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .orea-hero-section.style-3 .hero-main-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .orea-hero-section.style-3 .inner-main {
    flex-wrap: wrap;
    padding: 0px 10px;
    flex-direction: column-reverse;
  }
  .orea-hero-section.style-3 .hero-text-wrapper,
  .orea-hero-section.style-3 .hero-image-wrapper {
    width: 100%;
    padding: 0 !important;
  }
  .orea-hero-section.style-3 .hero-image-wrapper .hero-image {
    height: auto;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper .event-image img {
    width: 60px;
    height: 60px;
  }
  .orea-hero-section.style-3.text-right .hero-text-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    text-align: right;
  }
  .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text .box-wrapper,
  .orea-hero-section.style-3.text-right .hero-text-wrapper .hero-text .event-wrapper {
    justify-content: flex-end;
  }
  .orea-hero-section.style-3.background-image.text-right .hero-text-wrapper .hero-text .box-wrapper,
  .orea-hero-section.style-3.background-image.text-right .hero-text-wrapper .hero-text .event-wrapper, .orea-hero-section.style-3.background-video.text-right .hero-text-wrapper .hero-text .box-wrapper,
  .orea-hero-section.style-3.background-video.text-right .hero-text-wrapper .hero-text .event-wrapper, .orea-hero-section.style-3.background-solid.text-right .hero-text-wrapper .hero-text .box-wrapper,
  .orea-hero-section.style-3.background-solid.text-right .hero-text-wrapper .hero-text .event-wrapper, .orea-hero-section.style-3.background-gradient.text-right .hero-text-wrapper .hero-text .box-wrapper,
  .orea-hero-section.style-3.background-gradient.text-right .hero-text-wrapper .hero-text .event-wrapper {
    justify-content: flex-start;
  }
  .orea-hero-section.style-3.container-active .hero-text-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .orea-hero-section.style-3 .hero-text-wrapper {
    padding: 20px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text {
    row-gap: 25px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text h1 {
    font-size: 31px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper {
    flex-wrap: wrap;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper .box-item {
    width: 220px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .box-wrapper .box-item + p {
    width: 100%;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper .event-image img {
    width: 60px;
    height: 60px;
  }
  .orea-hero-section.style-3 .hero-text-wrapper .hero-text .event-wrapper p {
    font-size: 18px;
    max-width: 160px;
  }
  .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .event-wrapper,
  .orea-hero-section.style-3.text-center .hero-text-wrapper .hero-text .box-wrapper {
    text-align: center;
  }
  .orea-hero-section.style-3.text-right .hero-text-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*-- hero 4  -- */
/*-- Base: mixin & variable  -- */
/* Hero style 4 */
.orea-hero-section.style-4 {
  position: relative;
  overflow: hidden;
}
.orea-hero-section.style-4 .container {
  height: 100%;
}
.orea-hero-section.style-4 .hero-main-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.orea-hero-section.style-4 .hero-main-wrapper .bg-image,
.orea-hero-section.style-4 .hero-main-wrapper .bg-video {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.orea-hero-section.style-4 .inner-main {
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 40px;
  padding: 70px 60px;
}
.orea-hero-section.style-4 .hero-text-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 2;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-4 .hero-text-wrapper .hero-text p,
.orea-hero-section.style-4 .hero-text-wrapper .hero-text h4 {
  color: #2a1a55;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text h1 {
  font-size: 74px;
  font-weight: 700;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text p {
  font-size: 16px;
  line-height: 1.6em;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .button-wrapper,
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us {
  margin-top: 20px;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us {
  display: flex;
  align-items: center;
  gap: 20px;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us h5 {
  font-size: 16px;
  color: #2a1a55;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us ul li a {
  font-size: 16px;
  color: #2a1a55;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orea-hero-section.style-4 .hero-text-wrapper .hero-text .follow-us ul li a:hover {
  color: #ffc107;
}
.orea-hero-section.style-4 .hero-text-wrapper.left {
  width: 50%;
}
.orea-hero-section.style-4 .hero-text-wrapper.left .hero-text p {
  margin-bottom: 20px;
}
.orea-hero-section.style-4 .hero-text-wrapper.right {
  width: 40%;
}
.orea-hero-section.style-4 .hero-text-wrapper.right p {
  max-width: 600px;
}
.orea-hero-section.style-4 .line {
  position: relative;
  width: 180px;
  height: 3px;
  background-color: #ffc107;
  border-radius: 6px;
  display: block;
}
.orea-hero-section.style-4 .line:after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #ffc107;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}
.orea-hero-section.style-4.flip .hero-text-wrapper.left {
  order: 2;
}
.orea-hero-section.style-4.flip .hero-text-wrapper.right {
  order: 1;
}
.orea-hero-section.style-4.background-image .hero-main-wrapper .bg-image {
  display: block;
}
.orea-hero-section.style-4.background-video .hero-main-wrapper .bg-video {
  display: block;
}
.orea-hero-section.style-4.background-solid {
  background-color: #fbfbff;
}
.orea-hero-section.style-4.background-gradient {
  background: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-hero-section.style-4.background-image .hero-main-wrapper, .orea-hero-section.style-4.background-video .hero-main-wrapper, .orea-hero-section.style-4.background-solid .hero-main-wrapper, .orea-hero-section.style-4.background-gradient .hero-main-wrapper {
  height: 750px;
}
.orea-hero-section.style-4.background-image .hero-main-wrapper:before, .orea-hero-section.style-4.background-video .hero-main-wrapper:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4745098039);
}
.orea-hero-section.style-4.background-image .hero-text-wrapper .hero-text p,
.orea-hero-section.style-4.background-image .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-4.background-image .hero-text-wrapper .hero-text h4, .orea-hero-section.style-4.background-video .hero-text-wrapper .hero-text p,
.orea-hero-section.style-4.background-video .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-4.background-video .hero-text-wrapper .hero-text h4 {
  color: #ffffff;
}
.orea-hero-section.style-4.background-image .hero-text-wrapper .hero-text .follow-us h5,
.orea-hero-section.style-4.background-image .hero-text-wrapper .hero-text .follow-us ul li a, .orea-hero-section.style-4.background-video .hero-text-wrapper .hero-text .follow-us h5,
.orea-hero-section.style-4.background-video .hero-text-wrapper .hero-text .follow-us ul li a {
  color: #ffffff;
}
.orea-hero-section.style-4.background-image .hero-text-wrapper .hero-text .follow-us ul li a:hover, .orea-hero-section.style-4.background-video .hero-text-wrapper .hero-text .follow-us ul li a:hover {
  color: #ffc107;
}
.orea-hero-section.style-4.container-active .inner-main {
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 1399px) {
  .orea-hero-section.style-4 .inner-main {
    padding: 70px 40px;
  }
  .orea-hero-section.style-4 .hero-text-wrapper .hero-text h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .orea-hero-section.style-4 .inner-main {
    padding: 70px 20px;
  }
  .orea-hero-section.style-4.container-active .inner-main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .orea-hero-section.style-4.background-image .hero-main-wrapper, .orea-hero-section.style-4.background-video .hero-main-wrapper, .orea-hero-section.style-4.background-solid .hero-main-wrapper, .orea-hero-section.style-4.background-gradient .hero-main-wrapper {
    height: 700px;
  }
  .orea-hero-section.style-4 .hero-text-wrapper .hero-text h1 {
    font-size: 40px;
  }
  .orea-hero-section.style-4 .hero-text-wrapper.right {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .orea-hero-section.style-4.background-image .hero-main-wrapper, .orea-hero-section.style-4.background-video .hero-main-wrapper, .orea-hero-section.style-4.background-solid .hero-main-wrapper, .orea-hero-section.style-4.background-gradient .hero-main-wrapper {
    height: auto;
  }
  .orea-hero-section.style-4 .inner-main {
    flex-wrap: wrap;
  }
  .orea-hero-section.style-4 .hero-text-wrapper {
    justify-content: center;
    width: 100% !important;
  }
}
@media only screen and (max-width: 575px) {
  .orea-hero-section.style-4 .line {
    width: 110px;
  }
  .orea-hero-section.style-4.background-image .hero-main-wrapper, .orea-hero-section.style-4.background-video .hero-main-wrapper, .orea-hero-section.style-4.background-solid .hero-main-wrapper, .orea-hero-section.style-4.background-gradient .hero-main-wrapper {
    height: auto;
  }
  .orea-hero-section.style-4 .hero-text-wrapper .hero-text {
    row-gap: 20px;
  }
  .orea-hero-section.style-4 .hero-text-wrapper .hero-text h1 {
    font-size: 31px;
  }
}
/*-- hero 5  -- */
/*-- Base: mixin & variable  -- */
/* Hero style 1 */
.orea-hero-section.style-5 .container {
  height: 100%;
}
.orea-hero-section.style-5 .hero-main-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 20px;
}
.orea-hero-section.style-5 .hero-main-wrapper:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4745098039);
  display: none;
}
.orea-hero-section.style-5 .hero-main-wrapper .bg-image,
.orea-hero-section.style-5 .hero-main-wrapper .bg-video {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.orea-hero-section.style-5 .inner-main {
  height: 100%;
  display: flex;
  position: relative;
  gap: 40px;
}
.orea-hero-section.style-5 .hero-text-wrapper {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  padding-left: 40px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text {
  width: 100%;
  max-width: 680px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text p,
.orea-hero-section.style-5 .hero-text-wrapper .hero-text h1 {
  color: #2a1a55;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text h1 {
  font-size: 74px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text p {
  font-size: 16px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .button-wrapper {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper {
  border-top: 1px solid #2a1a55;
  margin-top: 30px;
  display: flex;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item {
  padding: 10px 30px 5px 30px;
  border-right: 1px solid #2a1a55;
  display: flex;
  align-items: center;
  gap: 15px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item h4 {
  font-size: 60px;
  line-height: 1em;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item h5 {
  font-size: 16px;
  font-weight: 700;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item p {
  font-size: 14px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item .inner-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item .inner-item div {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:first-child {
  padding-left: 0;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) p.star-one {
  margin-top: 10px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) p.star-one span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a1a55;
  color: #ffffff;
  display: block;
  padding: 5px;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) p.star-one span i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) .inner-item:nth-child(2) {
  display: none;
}
.orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:last-child {
  border-right: none;
  padding-right: 0;
}
.orea-hero-section.style-5 .hero-image-wrapper {
  width: 50%;
}
.orea-hero-section.style-5 .hero-image-wrapper .hero-image {
  width: 100%;
  height: 800px;
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
}
.orea-hero-section.style-5 .hero-image-wrapper .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-hero-section.style-5.flip .hero-text-wrapper {
  order: 2;
  padding-left: 0;
  padding-right: 40px;
}
.orea-hero-section.style-5.flip .hero-image-wrapper {
  order: 1;
}
.orea-hero-section.style-5.background-image .hero-main-wrapper .bg-image {
  display: block;
}
.orea-hero-section.style-5.background-video .hero-main-wrapper .bg-video {
  display: block;
}
.orea-hero-section.style-5.background-solid .hero-main-wrapper {
  background-color: #fbfbff;
}
.orea-hero-section.style-5.background-gradient .hero-main-wrapper {
  background: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-hero-section.style-5.background-image .hero-main-wrapper:before, .orea-hero-section.style-5.background-video .hero-main-wrapper:before {
  display: block;
}
.orea-hero-section.style-5.background-image .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-5.background-image .hero-text-wrapper .hero-text p, .orea-hero-section.style-5.background-video .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-5.background-video .hero-text-wrapper .hero-text p {
  color: #ffffff;
}
.orea-hero-section.style-5.background-image, .orea-hero-section.style-5.background-video, .orea-hero-section.style-5.background-solid, .orea-hero-section.style-5.background-gradient {
  padding: 30px 30px 0px 30px;
}
.orea-hero-section.style-5.container-active .hero-main-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}
.orea-hero-section.style-5.padding-disable {
  padding: 0;
}
.orea-hero-section.style-5.padding-disable .hero-main-wrapper {
  border-radius: 0;
}

@media only screen and (max-width: 1399px) {
  .orea-hero-section.style-5 .hero-text-wrapper {
    padding-left: 10px;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text h1 {
    font-size: 50px;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item {
    padding: 10px 20px 5px 20px;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item h4 {
    font-size: 50px;
  }
  .orea-hero-section.style-5.flip .hero-text-wrapper {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text h1 {
    font-size: 40px;
  }
  .orea-hero-section.style-5 .hero-image-wrapper .hero-image {
    height: 650px;
  }
  .orea-hero-section.style-5.background-image, .orea-hero-section.style-5.background-video, .orea-hero-section.style-5.background-solid, .orea-hero-section.style-5.background-gradient {
    padding: 20px 20px 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .orea-hero-section.style-5 .hero-main-wrapper {
    padding: 50px 10px;
  }
  .orea-hero-section.style-5 .inner-main {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .orea-hero-section.style-5 .hero-text-wrapper {
    width: 100%;
  }
  .orea-hero-section.style-5 .hero-image-wrapper {
    width: 100%;
  }
  .orea-hero-section.style-5 .hero-image-wrapper .hero-image {
    height: auto;
  }
}
@media only screen and (max-width: 575px) {
  .orea-hero-section.style-5 .hero-text-wrapper {
    padding-left: 0;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text h1 {
    font-size: 31px;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item {
    width: 50%;
    padding: 10px 15px !important;
    text-align: left;
    flex-direction: column;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item .inner-item {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) {
    border-right: none;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) p.star-one span {
    padding: 3px;
    font-size: 13px;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:nth-child(2) .inner-item:nth-child(2) {
    display: flex;
  }
  .orea-hero-section.style-5 .hero-text-wrapper .hero-text .review-wrapper .review-item:last-child {
    display: none;
  }
  .orea-hero-section.style-5.background-image, .orea-hero-section.style-5.background-video, .orea-hero-section.style-5.background-solid, .orea-hero-section.style-5.background-gradient {
    padding: 20px 20px 0px 20px;
  }
}
/*-- hero 6  -- */
/*-- Base: mixin & variable  -- */
/* Hero style 1 */
.orea-hero-section.style-6 .container {
  height: 100%;
}
.orea-hero-section.style-6 .hero-main-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0px 10px;
  height: 750px;
}
.orea-hero-section.style-6 .hero-main-wrapper:after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: 13%;
  width: 85px;
  height: 85px;
  background: transparent;
  border-top: 50px solid #fff;
  border-right: 50px solid #fff;
  border-top-right-radius: 95px 100px;
  transform: scaleY(-1);
}
.orea-hero-section.style-6 .hero-main-wrapper .background {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.orea-hero-section.style-6 .hero-main-wrapper .background:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4745098039);
  display: none;
}
.orea-hero-section.style-6 .hero-main-wrapper .background .bg-image,
.orea-hero-section.style-6 .hero-main-wrapper .background .bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.orea-hero-section.style-6 .inner-main {
  height: 100%;
  display: flex;
  position: relative;
  gap: 40px;
}
.orea-hero-section.style-6 .hero-text-wrapper {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  padding-left: 40px;
}
.orea-hero-section.style-6 .hero-text-wrapper .hero-text {
  width: 100%;
  max-width: 680px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}
.orea-hero-section.style-6 .hero-text-wrapper .hero-text p,
.orea-hero-section.style-6 .hero-text-wrapper .hero-text h1 {
  color: #2a1a55;
}
.orea-hero-section.style-6 .hero-text-wrapper .hero-text h1 {
  font-size: 60px;
}
.orea-hero-section.style-6 .hero-text-wrapper .hero-text p {
  font-size: 16px;
}
.orea-hero-section.style-6 .hero-text-wrapper .hero-text p.bg-description {
  background-color: rgba(255, 255, 255, 0.4196078431);
  padding: 3px 15px;
  border-radius: 32px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
}
.orea-hero-section.style-6 .hero-text-wrapper .hero-text .button-wrapper {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.orea-hero-section.style-6 .hero-image-wrapper {
  width: 50%;
  position: relative;
  z-index: 2;
}
.orea-hero-section.style-6 .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
}
.orea-hero-section.style-6 .hero-image-wrapper .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.orea-hero-section.style-6.flip .hero-text-wrapper {
  order: 2;
  padding-left: 0;
  padding-right: 40px;
}
.orea-hero-section.style-6.flip .hero-image-wrapper {
  order: 1;
}
.orea-hero-section.style-6.flip .hero-main-wrapper:after {
  right: auto;
  left: -50px;
  transform: scaleY(-1) rotate(-90deg);
}
.orea-hero-section.style-6.flip .hero-main-wrapper .background {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}
.orea-hero-section.style-6.background-image .hero-main-wrapper .background .bg-image {
  display: block;
}
.orea-hero-section.style-6.background-video .hero-main-wrapper .background .bg-video {
  display: block;
}
.orea-hero-section.style-6.background-solid .hero-main-wrapper .background {
  background-color: #fbfbff;
}
.orea-hero-section.style-6.background-gradient .hero-main-wrapper .background {
  background: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-hero-section.style-6.background-image .hero-main-wrapper .background:before, .orea-hero-section.style-6.background-video .hero-main-wrapper .background:before {
  display: block;
}
.orea-hero-section.style-6.background-image .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-6.background-image .hero-text-wrapper .hero-text p, .orea-hero-section.style-6.background-video .hero-text-wrapper .hero-text h1,
.orea-hero-section.style-6.background-video .hero-text-wrapper .hero-text p {
  color: #ffffff;
}
.orea-hero-section.style-6.background-image, .orea-hero-section.style-6.background-video, .orea-hero-section.style-6.background-solid, .orea-hero-section.style-6.background-gradient {
  padding: 30px 60px 0px 60px;
}
.orea-hero-section.style-6.container-active .hero-main-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}
.orea-hero-section.style-6.padding-disable {
  padding: 0;
}
.orea-hero-section.style-6.padding-disable .hero-main-wrapper {
  border-radius: 0;
}

@media only screen and (max-width: 1399px) {
  .orea-hero-section.style-6 .hero-main-wrapper {
    height: 650px;
  }
  .orea-hero-section.style-6 .hero-main-wrapper:after {
    bottom: 11.5%;
  }
  .orea-hero-section.style-6 .hero-text-wrapper {
    padding-left: 10px;
  }
  .orea-hero-section.style-6 .hero-text-wrapper .hero-text h1 {
    font-size: 50px;
  }
  .orea-hero-section.style-6.flip .hero-text-wrapper {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .orea-hero-section.style-6 .hero-main-wrapper:after {
    bottom: 11.9%;
  }
  .orea-hero-section.style-6 .hero-text-wrapper .hero-text h1 {
    font-size: 40px;
  }
  .orea-hero-section.style-6 .hero-image-wrapper .hero-image {
    height: 650px;
  }
  .orea-hero-section.style-6.background-image, .orea-hero-section.style-6.background-video, .orea-hero-section.style-6.background-solid, .orea-hero-section.style-6.background-gradient {
    padding: 20px 20px 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .orea-hero-section.style-6 .hero-main-wrapper {
    padding-top: 90px;
    padding-bottom: 90px;
    height: auto;
  }
  .orea-hero-section.style-6 .inner-main {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .orea-hero-section.style-6 .hero-text-wrapper {
    width: 100%;
  }
  .orea-hero-section.style-6 .hero-image-wrapper {
    width: 100%;
  }
  .orea-hero-section.style-6 .hero-image-wrapper .hero-image {
    position: relative;
    height: 200px;
  }
  .orea-hero-section.style-6 .hero-image-wrapper .hero-image img {
    -o-object-position: left;
       object-position: left;
  }
}
@media only screen and (max-width: 575px) {
  .orea-hero-section.style-6 .hero-main-wrapper .background {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 101%);
  }
  .orea-hero-section.style-6 .hero-main-wrapper:after {
    bottom: 2.2%;
  }
  .orea-hero-section.style-6 .hero-text-wrapper {
    padding-left: 0;
  }
  .orea-hero-section.style-6 .hero-text-wrapper .hero-text h1 {
    font-size: 31px;
  }
  .orea-hero-section.style-6.background-image, .orea-hero-section.style-6.background-video, .orea-hero-section.style-6.background-solid, .orea-hero-section.style-6.background-gradient {
    padding: 20px 20px 0px 20px;
  }
  .orea-hero-section.style-6.flip .hero-main-wrapper .background {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  }
}/*# sourceMappingURL=hero.css.map */