@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url(component.min.css);
@import url(layout.min.css);
@import url(cart.min.css);
@import url(account.min.css);
@import url(product-detail.min.css);
:root {
  --primary: #dfad55;
  --secondry: rgb(238, 27, 73);
  --black: #000;
  --text-color: #828282;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  line-height: 1;
}

body {
  background: var(--white);
  color: #030303;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

a,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  text-decoration: none;
}

p {
  font-size: 1rem;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
}

h4 {
}

nav.navbar.navbar-expand-lg.top-nav {
  padding: 0;
}

.main-slider .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-indicators li {
  width: 1rem;
  height: 1rem;
  border-radius: 100px;
  border: 0;
  margin: 0 5px;
  opacity: 1;
  transform: scale(1);
}

.carousel-indicators li.active {
  background: var(--primary);
  transform: scale(1.5);
}
header {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 11111111;
  margin: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .logo img {
  filter: grayscale(100%);
}

header .socialIcon li a {
  font-size: 1.2rem;
  color: var(--white);
}

.slideOne {
  font-size: 16.25rem;
  text-transform: uppercase;
  position: relative;
  -webkit-text-stroke: 0.3vw #fff;
  color: transparent;
  display: inline-block;
  line-height: 0.95;
  margin: 0;
}

.slideOne:before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 100%;
  color: var(--primary);
  -webkit-text-stroke: 0.3vw var(--primary);
  /*border-right: 2px solid var(--primary);*/
  overflow: hidden;
  animation: animate 6s linear infinite;
}

@keyframes animate {
  0%,
  10%,
  100% {
    width: 0;
  }
  70%,
  80% {
    width: 100%;
  }
}
.slideTwo {
  font-size: 8.3125rem;
  text-transform: uppercase;
  position: relative;
  -webkit-text-stroke: 0.1vw #fff;
  color: transparent;
  display: inline-block;
}
.slideTwo:before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  height: 100%;
  color: var(--primary);
  -webkit-text-stroke: 0.3vw var(--primary);
  /*border-right: 2px solid var(--primary);*/
  overflow: hidden;
  animation: animate 6s linear infinite;
}
@keyframes animate {
  0%,
  10%,
  100% {
    width: 0;
  }
  70%,
  80% {
    width: 100%;
  }
}
.main-slider .carousel-caption .btnStyle {
  display: table;
  margin: 1rem auto 0;
}
.bounce-element {
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

.main-slider .arowDown span {
  background: var(--primary);
  width: 5px;
  height: 33px;
  display: table;
  border-radius: 5px;
  margin: auto;
  position: absolute;
  left: 1px;
  right: 0;
  top: 30px;
}

.main-slider .scrollRight {
  position: absolute;
  top: 17%;
  right: -21%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  z-index: 10;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  right: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 111;
}
.fixed .row {
  align-items: center !important;
}

.fixed .row .logo img {
  filter: invert(1);
  height: 70px;
}
.mision {
  padding: 3rem 0 8rem;
  text-align: center;
  position: relative;
  z-index: 11;
}
.sectionHeading {
  font-size: 12.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.mision p {
  font-size: 1.25rem;
  color: #221e1d;
  font-family: "Oswald", sans-serif;
  line-height: 1.9;
  margin: 0 0 2.5rem;
  z-index: 11;
}
.mision .btnStyle {
  border-color: var(--black);
  color: var(--black);
}
.team {
  background: var(--black);
  position: relative;
  padding: 0 0 5rem;
}

.teamList ul {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: -130px 0 0;
  position: relative;
  z-index: 1;
}
.mision .btnStyle:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.teamSet .sectionHeading {
  color: var(--white);
  line-height: 1;
  margin: -3rem 0 3rem;
}
.teamBox figure img {
  width: 100%;
  border: 1px solid #636363;
  filter: grayscale(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.teamBox {
  position: relative;
  margin-bottom: 2.5rem;
}

.teamBox .overlay {
  top: inherit;
  bottom: 2rem;
  z-index: 1;
}

.teamBox .overlay h2 {
  font-size: 4.375rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  margin: 40px 0 0;
}

.teamBox figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.teamBox .overlay p {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.125rem;
  color: var(--white);
  text-shadow: 0 0 12px black;
  font-family: "Oswald", sans-serif;
  line-height: 25px;
  margin: 0;
  opacity: 0;
}

.teamBox .overlay p + p {
  margin: 2rem 0 0;
}
.teamBox:hover .overlay p {
  opacity: 1;
}
.teamBox:hover figure img {
  filter: inherit;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.teamBox figure::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.teamBox:hover figure::before {
  -webkit-animation: circle 0.85s;
  animation: circle 0.85s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.boking {
  background: url(../images/bg1.jpg) no-repeat top center/ cover;
  padding: 15rem 0;
  text-align: center;
}

.boking .slideOne:before {
  -webkit-text-stroke: 0.3vw var(--black);
  color: var(--black);
}
.boking .btnStyle {
  margin-top: 3rem;
  position: relative;
  z-index: 11;
}

.storyHead {
  /* position: absolute; */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.storyHead video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  right: 0;
  bottom: 0;
}

.storyHead h2 {
  /*font-size: 25rem;
    -webkit-text-stroke: 0.3vw #fff;
    color: #000;
    text-transform: uppercase;
    background: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    mix-blend-mode: screen;
    overflow: hidden;*/
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 25rem;
  font-family: sans-serif;
  mix-blend-mode: multiply;
  user-select: none;
  line-height: 0.8;
  /* -webkit-text-stroke: 0.5vw #fff; */
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  place-items: center;
}

.Sec.story {
  position: relative;
  background: #000; /* height: 100%; */
  padding: 8rem 0 0;
}
.storyContent p {
  color: #fff;
  font-family: "Oswald", sans-serif;
  line-height: 1.9;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
}

.storyContent {
  position: absolute;
  bottom: 3rem;
}

.spacer {
  width: 100vw;
  /*height:101vh;*/
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding: 10rem 0;
}

.spacer > h1 {
  position: absolute;
  color: #000;
  width: 500vw;
  font-size: 12.5rem;
  font-weight: bold;
  margin: 0;
}

.spacer h2 {
  font-family: "Raleway";
  font-weight: 900;
  font-size: 3em;
  color: white;
}
.ftrDna {
  text-align: center;
  margin-bottom: 4rem;
}

.ftrDna .slideOne {
  font-size: 12.5rem;
  text-align: center;
}
.iconfooter i {
  color: black;
  font-size: 2rem;
  background-color: #ffffff;
  border-width: 2px;
  border-radius: 50%;
  width: 112px;
  height: 113px;
  border: 7px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.iconfooter {
  text-align: center;
}
.iconfooter span {
  font-size: 1rem;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.iconfooter a {
  display: table;
  margin: auto;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.25);
  margin: 2.5rem 0 6rem;
}

footer h3 {
  font-size: 1.75rem;
  color: #fff;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.form-group input {
  width: 100%;
  height: 60px;
  border-radius: 0;
  font-size: 13px;
  padding: 0 5rem 0 2rem;
  border: 0;
}
.form-group {
  position: relative;
}
.form-group a {
  width: 66px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.copyrght p {
  margin: 4rem 0 0;
  font-size: 1.125rem;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  border-top: 1px solid #414141;
  text-align: center;
  padding: 2rem 0;
}
.ftrSocial {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  margin: 4.5rem 0 0;
  justify-content: center;
}

.ftrSocial li a {
  font-size: 3rem;
  color: var(--white);
}
.ftrSocial li a:hover {
  color: var(--primary);
}

/* Inner Pages Css Start */

/* About Page Css Start */

.aboutBan .scrollRight {
  right: -22%;
}

.aboutInner .seaser1 {
  position: absolute;
  top: -2%;
  left: 8%;
}

.aboutInner .seaser2 {
  position: absolute;
  left: 18%;
  top: 1%;
}

.aboutInner .seaser3 {
  position: absolute;
  right: 23%;
}

.aboutInner {
  position: relative;
}

.aboutInner h3 {
  font-size: 9.375rem;
  font-weight: 600;
}

.abtBox {
  position: relative;
}

.abtBox .abtContentBox {
  position: absolute;
  background-color: var(--white);
  box-shadow: 0px 8px 53.1px 5.9px rgb(200 200 200 / 31%);
  width: calc(100% + 15rem);
  z-index: 2;
  padding: 3.5625rem 3.125rem 0px 3.125rem;
  margin-top: 3rem;
}
.abtContentBox a {
  border: 2px solid black;
  padding: 0.9375rem 2.5rem;
  box-shadow: 0px 8px 53.1px 5.9px rgb(200 200 200 / 31%);
  background-color: var(--white);
  display: inline;
}
.Sec.mision.aboutInner h5 {
  font-size: 2rem;
  margin-bottom: -1rem;
}
/* About Page Css End */

.missionBan .scrollRight {
  right: -30%;
}

.teamInner {
  padding-top: 8rem;
}

.contactInner .sectionHeading {
  font-size: 6.25rem;
}

.contactInner .form-group input,
.contactInner .form-group select {
  border: 1px solid #cccccc;
  background-color: #f3f3f3;
  height: 65px;
}

.contactInner .seaser1 {
  left: 9%;
  top: -8%;
}

.contactInner {
  margin-top: 5rem;
}

.contactInner .seaser3 {
  right: 18%;
  top: -4%;
}

.contactInner form label {
  font-size: 0.9375rem;
  color: #565759;
  font-weight: 600;
}

.contactInner form input::placeholder {
  font-size: 0.9375rem;
}

.contactInner .form-group select {
  font-size: 0.9375rem;
  color: #858585;
}

.contactInner form {
  gap: 1rem 0;
}

.contactInner .btnStyle {
  background-color: unset;
  padding: 1.375em 3.1em;
  margin-top: 1rem;
}

.workerSec h2 {
  font-size: 4rem;
  margin: 2rem 0px 2rem 0px;
}

.workerSec {
  padding: 5rem 0;
}