/* import fonts */
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

@font-face {
  font-family: 'ElMessiri';
  src: url('../fonts/ElMessiri-Regular.ttf');
  font-weight: 100;
  font-style: normal;
}

/* defaul css */

body,
html {
  font-family: 'ElMessiri';
  /* font-family: 'karla'; */
  overflow-x: hidden !important;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**************************************/
header {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* navigation bar */

.navbar {
  padding: 20px 0 40px 0;
  z-index: 3;
  transition: 0.3s;
  z-index: 200;
}

.navbar-brand {
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  text-transform: uppercase;
  display: flex;
}

.navbar-brand:hover {
  color: #fff;
}

.navbar-brand img {
  height: 22px;
  width: 22px;
  margin: 5px 5px;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 0.77rem;
  letter-spacing: 1px;
  margin-right: 30px;
  margin-top: 8px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.dropdown-toggle::after {
  display: none;
}

.navbar-nav .nav-link.hasBorder::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: rgb(255, 255, 255);
  transition: width .4s ease-in;
}

.navbar-nav .nav-link.hasBorder:hover::after {
  width: 100%;
}

.navbar-nav .nav-item .bubble::after {
  border-right: 7px solid transparent;
  border-top: 7px solid #7E23EA;
  bottom: -7px;
  content: "";
  position: absolute;
  left: 5px;
}

.navbar-nav .nav-link i {
  padding: 0 8px;
  color: rgb(255, 255, 255);
  transition: .5s;
}

.container-fluid {
  width: 90%;
}

.navbar .dropdown:hover>.dropdown-menu {
  display: block;
}

.navbar .dropdown:hover>.nav-link i {
  transform: rotate(180deg);
}

.navbar .dropdown-menu {
  border: 0;
  border-radius: 0px;
  padding: 0;
  background-color: #000;
}

.navbar .dropdown-menu.cart-dropdown .wrapper {
  height: 40vh;
  overflow-y: scroll;
  padding: 20px;
}

.navbar .dropdown-toggle {
  height: 100%;
}

.navbar .dropdown-menu .dropdown-item {
  color: #ffffff;
  font-size: 0.77rem;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: .5s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  color: #A8741A;
  background-color: transparent;
}

#wrapper {
  background: transparent;
  display: inline-block;
  border-radius: 500px;
  position: relative;
  padding: 10px;
  cursor: pointer;
  z-index: 5;
  visibility: hidden;
}

.main-item {
  width: 30px;
  height: 30px;
  position: relative;
}

.line {
  position: absolute;
  height: 2px;
  width: 90%;
  left: 0;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  transition: all cubic-bezier(0.25, 0.1, 0.28, 1.54) 0.32s;
  opacity: 1;
}

.line01 {
  top: 19%;
}

.line02 {
  top: 49%;
}

.line03 {
  top: 79%;
}

.menu.close .line01 {
  transform: rotate(45deg);
  top: 49%;
}

.menu.close .line02,
.menu.close .line03 {
  transform: rotate(-45deg);
  top: 49%;
}

.close {
  opacity: 1;
}

.navbar.shrink {
  padding: 15px 0 15px 0;
  background-color: #ffff;
  box-shadow: 0px 50px 70px rgba(11, 16, 51, 0.08);
  color: #243f67;
  margin-top: 0;
}

.navbar.shrink .navbar-nav .nav-link,
.navbar.shrink .navbar-brand,
.navbar.shrink .navbar-nav .nav-link i {
  color: #000;
}

.navbar.shrink .line {
  background-color: #000;
}

@media (max-width: 990px) {
  #wrapper {
    visibility: visible;
  }
}

.animate {
  animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  left: -15px;
  transition: ease;
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/*********************************************/
header .slider {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

header .slider .item {
  height: 100vh;
  width: 100%;
}

header .slider .item .image {
  height: 100%;
  width: 100%;
  position: absolute;
  background-size: cover;
  background-image: url('../images/background/slider-1.jpg');
  background-position: center center;
  animation: zoomin 25s ease-in infinite;
  transition: all .5s ease-in-out;
}

header .slider .item .image.image-2 {
  background-image: url('../images/background/slider-2.jpg');
}

header .slider .item .image.image-3 {
  background-image: url('../images/background/slide-3.jpg');
}

header .slider .item .image::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.712);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}

/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/*End of Zoom in Keyframes */

header .slider .item .caption {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  text-align: center !important;
}

header .slider .item .caption h4 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 1.3em;
  text-align: center;
  font-family: 'Crimson Text';
}

header .slider .item .caption h1 {
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
  font-size: 4em;
  text-align: center;
  font-family: 'Crimson Text';
}

header .slider .item .caption p {
  text-transform: capitalize;
  color: #fff;
  font-size: 1em;
  font-family: 'Crimson Text';
  text-align: center;
}

header .slider .item .caption a {
  text-transform: uppercase;
  color: #fff;
  font-size: 0.77em;
  text-decoration: none;
  text-align: center;
  padding: 12px 0;
  border: 2px solid #fff;
  margin: auto;
  letter-spacing: 1px;
  display: block;
  width: 230px;
  text-align: center;
  margin-top: 30px;
  transition: .5s;
}

header .slider .item .caption a:hover {
  background-color: #fff;
  color: #000;
}

/* explore jewels */
.explore {
  height: auto;
  width: 100%;
  padding: 50px 0 100px 0;
}

.explore .image {
  height: 80vh;
  background-image: url('../images/background/model.jpg');
  background-size: cover;
}

.explore .caption {
  padding: 130px 100px 100px 100px;
}

.explore .product {
  height: 80vh;
  overflow: hidden;
}

.explore .product .item {
  height: 80vh;
  width: 100%;
}

.explore .product .item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.explore .caption .child {
  position: relative;
}

.explore .caption .child .num h1 {
  position: absolute;
  color: whitesmoke;
  font-weight: 700;
  font-family: 'Crimson Text';
  z-index: 0;
  font-size: 20em;
  top: 0;
  margin-top: -50px;
  user-select: none;
}

.explore .caption .details {
  position: relative;
}

.explore .caption .details p {
  font-size: 1rem;
  color: grey;
  margin: 20px 0 0 0;
}

.explore .caption .details a {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-size: 0.77em;
  text-decoration: none;
  text-align: center;
  background-color: #000;
  padding: 12px 0;
  border: 2px solid rgb(7, 7, 7);
  margin: auto;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  transition: .5s;
}

.explore .caption .details a:hover {
  background-color: #A8741A;
  border-color: #A8741A;
}

/* collections */
.collections {
  height: auto;
  width: 100%;
  padding: 100px 0 100px 0;
  border-top: 1px solid whitesmoke;
}

.collections h1 {
  font-size: 2em;
}

.collections p {
  color: #A8741A;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.collections .child {
  width: 100%;
  margin: auto;
  height: auto;
}

.collections .child .image {
  height: 45vh;
  width: 100%;
}

.collections .child .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.collections .child .details {
  padding: 30px;
}

.collections .child .details a {
  color: #A8741A;
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}


.collections .child .details h6 {
  font-size: 1.3em;
  text-transform: capitalize;
  color: #262626;
}

.collections a.view {
  text-transform: uppercase;
  color: #262626;
  font-size: 0.77em;
  text-decoration: none;
  text-align: center;
  padding: 12px 0;
  border: 2px solid #262626;
  margin: auto;
  letter-spacing: 1px;
  display: block;
  width: 180px;
  text-align: center;
  margin-top: 30px;
  transition: .5s;
}

.collections a.view:hover {
  color: rgb(255, 255, 255);
  background-color: #A8741A;
  border-color: #A8741A;
}

/* contact */
.contact {
  background-color: #F8F8F9;
  padding: 100px 0 100px 0;
  height: auto;
  width: 100%;
}

.contact .map {
  height: 60vh;
  padding: 0;
}

.contact .details {
  padding: 50px 0 0 0;
}

.contact .details .child p {
  text-transform: uppercase;
}

.contact .details .child h1 {
  text-transform: capitalize;
}

.contact .details .child h6 {
  text-transform: capitalize;
  font-size: 0.88rem
}

.contact .details .child span {
  display: block;
  margin-bottom: 10px;
}

.contact .details .child span i {
  padding-right: 8px;
}

.contact .details .child span a {
  color: #243f67;
  text-decoration: none;
}

.contact .details .child .btns a {
  display: block;
  margin: 3px auto 0 auto;
  width: 200px;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.77em;
  text-decoration: none;
  text-align: center;
  padding: 12px 0;
  background-color: #000000;
  border: 2px solid #0000;
  letter-spacing: 1px;
  display: block;
  width: 180px;
  text-align: center;
  transition: .5s;
}

.contact .details .child .btns a:hover {
  background-color: #A8741A;
  border-color: #A8741A;
}

/* ads banner */
.banner {
  height: auto;
  width: 100%;
  background-image: url('../images/background/slider-1.jpg');
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 0 100px 0;
  position: relative;
}

.banner::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.726);
  left: 0;
  z-index: 0;
}

.banner .caption {
  position: relative;
  z-index: 3;
  text-align: center !important;
}

.banner .caption h4 {
  color: #fff;
  text-transform: uppercase;
}

.banner .caption h1 {
  color: #fff;
  text-transform: capitalize;
}

.banner .caption a {
  display: block;
}

.banner .caption a {
  text-transform: uppercase;
  color: #fff;
  font-size: 0.77em;
  text-decoration: none;
  text-align: center;
  padding: 12px 0;
  border: 2px solid #fff;
  margin: auto;
  letter-spacing: 1px;
  display: block;
  width: 230px;
  text-align: center;
  margin-top: 30px;
  transition: .5s;
}

.banner .caption a:hover {
  background-color: #fff;
  color: #000;
}

/* footer */
footer {
  padding: 50px 0 50px 0;
}

footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .social .icon {
  height: 15px;
  width: 15px;
  opacity: 0.7;
  margin: 0 10px;
  transition: .5s;
}

footer .social .icon:hover {
  opacity: 1;
}

footer .social .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

footer .footer-links {
  width: 60%;
  margin: auto;
}

footer .row {
  padding-top: 50px;
}

footer .row a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.77rem;
  text-align: center;
  color: rgb(53, 53, 53);
  transition: .5s;
}

footer .row a:hover {
  color: #000;
}

/* page preloader */
.preloader {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .img {
  height: 100px;
  width: 100px;
}

.preloader .img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media(max-width : 780px) {
  h1 {
    font-size: 2em !important;
  }

  .explore {
    padding: 0 0 100px 0;
    margin-top: 50px;
  }

  .explore .image {
    height: 60vh;
  }

  .explore .caption {
    padding: 20px 50px;
    font-size: 1em !important;
  }

  .explore .explore-product {
    order: 1;
    height: 50vh;
  }

  .explore02 {
    margin-top: 0;
  }

  .explore02 .caption {
    order: 2
  }

  .explore .caption .details h1 {
    font-size: 1.5em;
  }

  .explore .caption .details p {
    font-size: 0.88rem;
  }
}