@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

body,
html {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: #c7a753;
}

.home {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  height: 100vh;
  position: relative;
  flex-direction: column;
}
.home a {
  position: absolute;
  bottom: 50px;
  z-index: 10;
}
.home a i {
  color: #fff;
  font-size: 2em;
}

.video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.video img {
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.707);
  z-index: 2;
}

.coming {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  z-index: 20;
}
.coming h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 500;
  text-transform: uppercase;
}
.coming span {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.7em;
  padding-top: 20px;
}
.coming img {
  width: 230px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.coming .c {
  width: 550px;
  position: absolute;
}

@media (max-width: 735px) {
  .coming h1 {
    font-size: 2em;
  }
  .coming span {
    font-size: 1.3em;
  }
  .coming img {
    width: 180px;
  }
  .coming .c {
    width: 400px;
  }
}
.slider {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
  font-size: 2em;
  font-weight: 500;
  position: relative;
  color: #c7a753;
  gap: 10px;
}
header::after {
  content: "";
  width: 150px;
  height: 3px;
  border-radius: 3px;
  background-color: #c7a753;
}

@media (max-width: 421px) {
  header {
    font-size: 1.7em;
    text-align: center;
  }
}
.box {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.section {
  width: 100%;
}

.pt50 {
  padding-top: 50px;
}

.au {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 30px;
}
.au img {
  width: 450px;
  height: 300px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.text {
  width: 550px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.text h2 {
  color: #c7a753;
  font-weight: 500;
}
.text p {
  font-size: 0.9em;
  color: #c7a753;
  text-transform: capitalize;
  opacity: 0.7;
  line-height: 2;
}

.mySwiper {
  width: 100%;
  padding-left: 50px;
}
.mySwiper .swiper-slide .imgCont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 340px;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #c7a753;
  border-radius: 12px;
}
.mySwiper .swiper-slide .imgCont img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 0.2s;
}
.mySwiper .swiper-slide .imgCont img:hover {
  scale: 1.08;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5% 50px 5%;
  background-color: #c7a753;
  color: #fff;
  z-index: 10;
}
.footer h1 {
  font-weight: 500;
  font-size: 1.7em;
  font-family: "Cinzel", serif;
}

.gems {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.gem {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.gem img {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.gem span {
  color: #c7a753;
  font-weight: 400;
  font-size: 1.1em;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.links a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  cursor: pointer;
  font-weight: 500;
}
.links a i {
  font-size: 1.1em;
}

@media (max-width: 1001px) {
  .au {
    flex-direction: column;
  }
}
@media (max-width: 601px) {
  .au img {
    width: 100%;
  }
  .au .text {
    width: 100%;
  }
}
@media (max-width: 751px) {
  .links {
    gap: 10px;
  }
  .footer {
    padding: 50px 20px 50px 20px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 351px) {
  .footer {
    gap: 5px;
  }
  .footer h1 {
    font-size: 1.5em;
  }
  .footer a {
    font-size: 1em;
  }
}
.imgInner {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 25;
  background-color: rgba(255, 255, 255, 0.9137254902);
  padding: 0 20px;
}

.img {
  width: 600px;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #c7a753;
}
.img img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.in {
  position: relative;
}
.in i {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background-color: red;
  font-size: 1.2em;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  cursor: pointer;
}

@media (max-width: 701px) {
  .in {
    width: 100%;
  }
  .img {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 521px) {
  .in {
    width: 100%;
  }
  .img {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 421px) {
  .au img {
    height: auto;
  }
}
@media (max-width: 351px) {
  .gem {
    width: 100%;
  }
  .gem img {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .slider {
    height: 600px;
  }
  .mySwiper .swiper-slide .imgCont {
    height: 380px;
  }
}
@media (max-width: 500px) {
  .mySwiper {
    width: 100%;
    padding: 0;
  }
  .mySwiper .swiper-slide .imgCont {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media (max-width: 350px) {
  .slider {
    height: 400px;
  }
  .mySwiper .swiper-slide .imgCont {
    height: 250px;
  }
  .img {
    height: 250px;
  }
  .in i {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  position: relative;
  border-bottom: 5px solid #c7a753;
}
.header img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(51, 51, 51, 0.707);
  z-index: 2;
}
.header h1 {
  position: absolute;
  color: #fff;
  z-index: 5;
}

.pt {
  display: flex;
  justify-content: center;
  padding: 50px 0 100px 0;
}

.ptext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ptext h2 {
  color: #c7a753;
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.ptext h2::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #c7a753;
}
.ptext p {
  padding: 20px 0 10px 0;
  line-height: 2;
  color: #c7a753;
  opacity: 0.8;
}

@media (max-width: 376px) {
  .header h1 {
    font-size: 1.5em;
    text-align: center;
  }
}
.media {
  display: flex;
  gap: 10px;
}
.media a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-color: #c7a753;
  transition: 100ms;
}
.media a i {
  color: #fff;
  font-size: 1.3em;
  transition: 100ms;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background-color: transparent;
  transition: 0.2s;
  z-index: 25;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.color {
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.251);
}

.lks {
  display: flex;
  list-style: none;
}
.lks li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  text-transform: capitalize;
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.lks li a:hover {
  color: #c7a753;
}
.lks li .active {
  color: #c7a753;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
}
.logo img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu {
  display: none;
  flex-direction: column;
  position: relative;
  height: 80px;
  width: 35px;
  border: none;
  outline: none;
  background-color: transparent;
}
.menu span {
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #212121;
  position: absolute;
  transition: 0.3s;
}
.menu span:nth-child(1) {
  top: 28px;
}
.menu span:nth-child(2) {
  top: 40px;
}
.menu span:nth-child(3) {
  top: 52px;
}

.activeMenu .box .menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
  background-color: red;
}

.activeMenu .box .menu span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.activeMenu .box .menu span:nth-child(3) {
  background-color: red;
  transform: rotate(-45deg);
  top: 40px;
}

@media (max-width: 901px) {
  .menu {
    display: flex;
  }
  .lks {
    position: fixed;
    top: 82px;
    width: 100%;
    height: 100vh;
    left: -100%;
    flex-direction: column;
    background-color: #fff;
    transition: 0.2s;
  }
  .lks li {
    width: 100%;
  }
  .lks li a {
    width: 100%;
    font-size: 1.2em;
  }
  .activeMenu .lks {
    left: 0;
  }
}/*# sourceMappingURL=style.css.map */