@charset "UTF-8";
/* --------------- ********orvina********* --------------
   --------------- ********style********* --------------
    * Version: v1.0.0
    * Author: Wooprex
    * Author URI: https://wooprex.com  
*/
/*-- Reset css styles  -- */
/*-- Base: mixin & variable  -- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* -- Common elements -- */
html {
  scroll-behavior: smooth;
  margin-right: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  overflow-x: clip;
  background-color: #ffffff;
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  transition: 0.6s all;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1360px;
}

/* -- form style -- */
form {
  max-width: 1000px;
}

textarea,
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=datetime],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Inter", sans-serif;
  border: 1px solid;
  outline: 0;
  box-shadow: none;
  padding: 14px 20px;
  line-height: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
  font-weight: 300;
  color: #000000;
  border-color: #A09EAB;
}
textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder {
  color: #000000;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 16px;
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=datetime]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: #000000;
  transition: 0.3s all;
  font-size: 16px;
}
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  box-shadow: none;
  outline: none;
  border-color: #FFCA05;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  background-color: transparent !important;
  cursor: pointer;
  border-radius: 4px !important;
  position: relative;
  top: -2px;
}
input[type=checkbox]:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #000000;
}
input[type=checkbox]:checked {
  background-color: #000000 !important;
  border-color: #000000 !important;
}
input[type=checkbox]:checked::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

textarea {
  min-height: 120px;
  resize: none;
}

/* -- Placeholder color -- */
::-webkit-input-placeholder {
  color: #000000;
}

:-moz-placeholder {
  color: #000000;
}

::-moz-placeholder {
  color: #000000;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #000000;
}

/* For Chrome, Edge, and Safari */
input[type=date]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* For Firefox */
input[type=date]::-moz-calendar-picker-indicator,
input[type=time]::-moz-calendar-picker-indicator {
  display: none;
}

/* For Internet Explorer */
input[type=date]::-ms-clear,
input[type=date]::-ms-expand,
input[type=time]::-ms-clear,
input[type=time]::-ms-expand {
  display: none;
}

label {
  font-family: "Poppins", sans-serif;
}

/* -- Typography setting -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #090511;
  text-rendering: optimizeLegibility;
  font-weight: 700;
}

h1 {
  font-size: 80px;
  line-height: 1.1em;
}

h2 {
  font-size: 68px;
  line-height: 1.2em;
}

h3 {
  font-size: 56px;
  line-height: 1.2em;
}

h4 {
  font-size: 42px;
  line-height: 1.2em;
}

h5 {
  font-size: 24px;
  line-height: 1.6em;
}

h6 {
  font-size: 20px;
  line-height: 1.6em;
}

p {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: 0.3s all;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: #090511;
}
a:focus, a:hover {
  text-decoration: none;
  outline: 0;
  color: #FFCA05;
}

label {
  font-weight: 600;
}

.border-line {
  border: 1px solid #A09EAB;
}

.border-line-bottom {
  border-bottom: 1px solid rgba(168, 168, 168, 0.16) !important;
}

.no-line {
  border: none !important;
}

.padding-y {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-bottom {
  padding-bottom: 80px;
}

.padding-top {
  padding-top: 80px;
}

.padding-x {
  padding-left: 70px;
  padding-right: 70px;
}

.padding-right {
  padding-right: 70px;
}

.padding-left {
  padding-left: 70px;
}

.relative {
  position: relative;
}

.orea-flex {
  display: flex;
}

.orea-swiper {
  overflow-x: clip;
  position: relative;
  max-width: 100%;
}

/* -- radius --*/
.radius-8 {
  border-radius: 8px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-32 {
  border-radius: 32px;
}

.radius-56 {
  border-radius: 56px;
}

.rounded-full {
  border-radius: 999px;
}

/* -- text-size -- */
.text-size-1 {
  font-size: 12px;
}

.text-size-2 {
  font-size: 14px;
}

.text-size-3 {
  font-size: 16px;
}

.text-size-4 {
  font-size: 18px;
}

.text-size-5 {
  font-size: 20px;
}

.text-size-6 {
  font-size: 24px;
}

.text-size-7 {
  font-size: 28px;
}

.text-size-8 {
  font-size: 32px;
}

.text-size-9 {
  font-size: 38px;
}

.text-size-10 {
  font-size: 40px;
}

.text-size-11 {
  font-size: 48px;
}

.text-size-12 {
  font-size: 56px;
}

.text-size-13 {
  font-size: 64px;
}

.text-size-14 {
  font-size: 96px;
}

.text-size-15 {
  font-size: 120px;
}

/* -- fontWeight -- */
.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

blockquote {
  max-width: 850px;
  padding: 20px 40px 20px 80px;
  border-radius: 12px;
  font-weight: 500;
  position: relative;
  background-color: #FFCA05;
  color: #ffffff;
}
blockquote:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 50px;
  height: 40px;
  background: url(../assets/shape/quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}

@media only screen and (max-width: 575px) {
  blockquote {
    padding: 20px;
  }
  blockquote:before {
    width: 50px;
    height: 50px;
    top: 0;
    left: inherit;
    right: 0;
    transform: inherit;
    opacity: 0.6;
  }
}
main ul {
  padding-left: 20px;
}
main ul li {
  list-style-type: disc;
}
main ol {
  padding-left: 20px;
}
main ol li {
  list-style-type: decimal;
}

/* ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.accordion .accordion-item {
  border-top: none;
  border-radius: 0px;
  background-color: #FBFBFF;
}
.accordion .accordion-item .accordion-header {
  line-height: 1;
}
.accordion .accordion-item .accordion-button {
  border-top: 1px solid #A09EAB;
  border-radius: 0px;
  box-shadow: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000000;
}
.accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

/*-- All components style -- */
/*-- scrollbar -- */
/*-- Base: mixin & variable  -- */
/*-- All components style -- */
/*-- scrollbar -- */
/* Customize the entire scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Customize the track (background) */
::-webkit-scrollbar-track {
  background: #f7f7f7;
}

/* Customize the handle (scrollbar tab) */
::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f7f7f7;
}

/* Customize the entire scrollbar */
.orea-mobile-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Customize the track (background) */
.orea-mobile-menu::-webkit-scrollbar-track {
  background: #f7f7f7;
}

/* Customize the handle (scrollbar tab) */
.orea-mobile-menu::-webkit-scrollbar-thumb {
  background: #f7f7f7;
  border-radius: 5px;
}

/* Handle on hover */
.orea-mobile-menu::-webkit-scrollbar-thumb:hover {
  background: #FFCA05;
}

/* Customize the entire scrollbar */
header.orea-header-section.header-2 .orea-cart-bar .cart-details .cart-top::-webkit-scrollbar {
  width: 3px;
  /* Width of the scrollbar */
  height: 3px;
  /* Height of the scrollbar (horizontal scrollbar) */
}

/* Customize the track (background) */
header.orea-header-section.header-2 .orea-cart-bar .cart-details .cart-top::-webkit-scrollbar-track {
  background: #FBFBFF;
}

/* Customize the handle (scrollbar tab) */
header.orea-header-section.header-2 .orea-cart-bar .cart-details .cart-top::-webkit-scrollbar-thumb {
  background: #FFCA05;
  border-radius: 6px;
}

/* Handle on hover */
header.orea-header-section.header-2 .orea-cart-bar .cart-details .cart-top::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

.scroll-padding {
  padding-right: 15px;
}

/*-- button -- */
/*-- Base: mixin & variable  -- */
/* Button default */
.orea-btn.style-1 {
  border-radius: 48px;
  height: 45px;
  padding: 5px 20px;
  border: 1px solid #000000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  gap: 5px;
  overflow: hidden;
}
.orea-btn.style-1.outline {
  color: #000000;
  background-color: transparent;
}
.orea-btn.style-1.outline:hover {
  background-color: #000000;
  color: #ffffff;
}
.orea-btn.style-1.fill {
  color: #ffffff;
  background-color: #000000;
}
.orea-btn.style-1.fill:hover {
  background-color: transparent;
  color: #000000;
}
.orea-btn.style-1.watch {
  padding: 0px 25px 0px 23px;
}
.orea-btn.style-1.watch i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 28px;
}
.orea-btn.style-1.bg-animated i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  transform: rotate(-45deg);
}
.orea-btn.style-1.bg-animated:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  transition: all 0.3s ease;
  z-index: -1;
}
.orea-btn.style-1.bg-animated:hover {
  color: #ffffff !important;
}
.orea-btn.style-1.bg-animated:hover:before {
  width: 100%;
}
.orea-btn.style-1.bg-animated:hover i {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.orea-btn.style-1 i {
  /* display: none; */
  font-size: 20px;
}
.orea-btn.style-1.icon-enable i {
  display: flex;
}
.orea-btn.style-1.icon-enable.icon-left {
  flex-direction: row-reverse;
}
.orea-btn.style-1.plain {
  padding: 0;
  border: none;
  min-width: auto;
  height: auto;
}
.orea-btn.style-1.plain:hover {
  color: #000000;
}

.orea-btn.style-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.orea-btn.style-2 span.text {
  padding: 13px 30px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  min-width: 150px;
}
.orea-btn.style-2 .fill span.text {
  color: #000000;
  background-color: transparent;
}
.orea-btn.style-2 .outline span.text {
  color: #ffffff;
  background-color: #FFCA05;
}
.orea-btn.style-2 .fill span.text {
  padding: 13px 30px;
  color: #000000;
  font-weight: 600;
  /* background-color: #FFCA05; */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  min-width: 150px;
}
.orea-btn.style-2 span.text:before {
  position: absolute;
  content: "";
  width: 200%;
  height: 200%;
  z-index: -1;
  border-radius: 50%;
  top: 100%;
  right: 100%;
  transition: all 0.6s ease;
  background: transparent;
}
.orea-btn.style-2 span.icon {
  height: 50px;
  width: 50px;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.6s ease;
}
.orea-btn.style-2 span.icon i {
  font-size: 24px;
  transform: rotate(-45deg);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orea-btn.style-2 span.icon span {
  transition: 0s;
}
.orea-btn.style-2 span.icon span.copy-icon {
  position: absolute;
  transform: translate(-150%, 150%);
}
.orea-btn.style-2:hover span.text:before {
  top: -30px;
  right: -60px;
}
.orea-btn.style-2:hover span.icon {
  background-color: #FFCA05;
}
.orea-btn.style-2:hover span.icon span.main-icon {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.orea-btn.style-2:hover span.icon span.copy-icon {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0%);
}
.orea-btn.style-2.primary span.text {
  background-color: #000000;
}
.orea-btn.style-2.primary span.text:before {
  background-color: #FFCA05;
}
.orea-btn.style-2.primary span.icon {
  background-color: #FFCA05;
}
.orea-btn.style-2.primary:hover span.icon {
  background-color: #000000;
}
.orea-btn.style-2.secondary span.text {
  background-color: #000000;
}
.orea-btn.style-2.secondary span.text:before {
  background-color: #ffffff;
}
.orea-btn.style-2.secondary span.icon {
  background-color: #ffffff;
}
.orea-btn.style-2.secondary span.icon i {
  color: #FFCA05;
}
.orea-btn.style-2.secondary:hover span.text {
  color: #FFCA05;
}
.orea-btn.style-2.secondary:hover span.icon {
  background-color: #000000;
}
.orea-btn.style-2.secondary:hover span.icon i {
  color: #ffffff;
}
.orea-btn.style-2 span.icon {
  display: none;
}
.orea-btn.style-2.icon-enable span.text {
  margin-right: 5px;
}
.orea-btn.style-2.icon-enable span.icon {
  display: flex;
}
.orea-btn.style-2.icon-enable.icon-left {
  flex-direction: row-reverse;
}
.orea-btn.style-2.icon-enable.icon-left span.text {
  margin-right: 0px;
  margin-left: 5px;
}

/* Button 1 */
.orea-btn-1 {
  cursor: pointer;
  background-color: #A09EAB;
  padding: 8px;
  border: 1px solid #A09EAB;
  position: relative;
  overflow: hidden;
  transition: 0.3s linear 0.1s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.orea-btn-1:before {
  display: block;
  content: "";
  background-color: #000000;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  position: absolute;
  top: 100%;
  transition: 0.3s linear 0.1s;
  z-index: -1;
}
.orea-btn-1:hover {
  color: #ffffff !important;
  border-color: #000000;
}
.orea-btn-1:hover:before {
  top: -50%;
}

/*-- preload Animation -- */
/*-- Base: mixin & variable  -- */
@keyframes loopRound {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(70deg);
  }
}
@keyframes oreaDraw {
  0%, 100% {
    clip-path: inset(0 0 0 0);
  }
  42% {
    clip-path: inset(0 0 0 100%);
  }
  43% {
    clip-path: inset(0 100% 0 0);
  }
}
/* Wave */
@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@keyframes stickyAnimation {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
header.orea-header-section.sticky {
  position: fixed !important;
  top: 0 !important;
  z-index: 99999 !important;
  animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
}
header.orea-header-section form {
  max-width: 100% !important;
}

.logo {
  max-width: 180px;
  display: inline-block;
}
.logo img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .logo {
    max-width: 140px;
  }
}
/*-- Responsive styles -- */
/*-- Base: mixin & variable  -- */
@media only screen and (max-width: 1499px) {
  .padding-x {
    padding-right: 10px;
    padding-left: 10px;
  }
  .padding-left {
    padding-left: 10px;
  }
  .padding-right {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-left {
    padding-left: 10px;
  }
  .padding-right {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .text-size-4 {
    font-size: 14px;
  }
  .text-size-5 {
    font-size: 20px;
  }
  .text-size-6 {
    font-size: 22px;
  }
  .text-size-7 {
    font-size: 24px;
  }
  .text-size-8 {
    font-size: 28px;
  }
  .text-size-9 {
    font-size: 30px;
  }
  .text-size-10 {
    font-size: 28px;
  }
  .text-size-11 {
    font-size: 36px;
  }
  .text-size-12 {
    font-size: 40px;
  }
  .text-size-13 {
    font-size: 44px;
  }
  .text-size-14 {
    font-size: 64px;
  }
  .padding-y {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-top {
    padding-top: 60px;
  }
  .padding-bottom {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .orea-flex {
    display: block;
  }
  .text-size-4 {
    font-size: 12px;
  }
  .text-size-5 {
    font-size: 18px;
  }
  .text-size-6 {
    font-size: 20px;
  }
  .text-size-7 {
    font-size: 22px;
  }
  .text-size-md-8 {
    font-size: 24px;
  }
  .text-size-9 {
    font-size: 26px;
  }
  .text-size-10 {
    font-size: 28px;
  }
  .text-size-11 {
    font-size: 32px;
  }
  .text-size-12 {
    font-size: 36px;
  }
  .text-size-13 {
    font-size: 38px;
  }
  .text-size-14 {
    font-size: 40px;
  }
}