/* @import url("https://fonts.googleapis.com/css2?family=Mate+SC&display=swap"); */

@font-face {
  font-family: timesNewRomanBold;
  src: url("..//fonts/times-new-roman-bold.ttf");
}
@font-face {
  font-family: timesNewRoman;
  src: url("..//fonts/times-new-roman.ttf");
}

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


html {
  font-family: "timesNewRoman";
  font-size: 10px;
}
/* ! Navigation */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: background-color 0.5s ease;
  z-index: 1000;
}
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.col-1 {
  width: 100%;
}
.nav {
  width: 100%;
  height: 100%;
  padding: 5px 5vw 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  transition: height 0.5s ease;
}

.nav a {
  text-decoration: none;
  color: rgb(192, 192, 192);
  font-size: 1.6rem;
  /* text-transform: uppercase; */
}

.nav .logo {
  width: 150px;
  padding-top: 10px;
}
.main-logo {
  width: 50%;
  display: block;
  padding-top: 8%;
  margin-left: auto;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  margin-right: auto;
  margin-right: 4rem;
}

.nav-link {
  margin: 0 2rem;
  position: relative;
}

.nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background: rgb(139, 139, 139);
  background: linear-gradient(
    0deg,
    rgba(139, 139, 139, 1) 0%,
    rgba(232, 232, 232, 1) 100%
  );
  position: absolute;
  left: 0;
  bottom: -3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

#nav-cta {
  display: inline-block;
  background: rgb(139, 139, 139);
  background: linear-gradient(
    0deg,
    rgba(139, 139, 139, 1) 0%,
    rgba(232, 232, 232, 1) 100%
  );
  color: #313131;
  padding: 1rem 2rem;
  border-radius: 2rem;
  transition: background-color 0.5s ease;
}

#nav-cta:hover {
  background-color: #d3d3d3;
}

/*Apply styles after scroll*/
.scrolling-active {
  background-color: rgba(8, 8, 8, 0.89);
  box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.1);
}

.scrolling-active .nav {
  height: 6.6rem;
}

.scrolling-active .nav a {
  color: #fff;
}

.scrolling-active #nav-cta {
  background-color: #fff;
  color: #fff;
}

.scrolling-active #nav-cta:hover {
  background-color: #151515;
}

.scrolling-active .nav-link::after {
  background-color: #fff;
}

/*Apply styles after scroll end*/

.burger {
  display: none;
}
.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
  transition: all 0.5s ease;
}
/* ! Navigation End*/

.hero {
  width: 100%;
  height: 100vh;
  background: url("/images/Untitled-2.png") center no-repeat;
  /* background: url("https://image.freepik.com/free-photo/wedding-ring-black-table-with-soft-focud-light-background_41050-792.jpg")
    center no-repeat; */
  background-size: cover;
  /* position: relative; */
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: black;
}

.hero::after {
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero h1 {
  color: rgb(201, 201, 201);
  padding-top: 15%;
  font-family: "timesNewRomanBold";
  text-align: center;
  font-size: 65px;
  font-weight: lighter;
  z-index: 40;
}
.hero p {
  color: rgb(163, 163, 163);
  padding-top: 0;
  font-family: "Mate SC", serif;
  text-align: center;
  font-size: 22px;
  font-weight: lighter;
}

.mid-container {
  width: 100%;
  background-color: #fff;
}

.centered-text {
  text-align: center;
}
.mid-headings {
  font-size: 35px;
  font-weight: 100;
  font-family: "timesNewRoman";
  margin-top: 6rem;
  text-transform: uppercase;
}
.breaker{
  margin-top: 6rem;
}

.title-border {
  border-bottom: 1px solid silver;
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}
main-headings {
  font-family: "Mate SC", serif;
}
.diamond-type {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10rem;
}
.middle {
  /* position: initial; */
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  z-index: 100;
  background-color: none;
  width: 100px;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(192, 192, 192, 0.308);
  border-radius: 5px;
  transition: 2s ease-in-out;
}
.middle:hover {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  z-index: 100;
  background: rgb(253, 187, 45);
  background: linear-gradient(
    0deg,
    rgba(114, 114, 114, 0.014) 0%,
    rgba(207, 207, 207, 0.562) 100%
  );
  width: 100px;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(192, 192, 192, 0.308);
  border-radius: 5px;
  transition: 2s ease-in-out;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-around;
}
.show-item {
  height: auto;
  width: 100px;
  margin: 20px;
  text-align: center;
}
.show-item h3 {
  font-weight: 100;
  font-family: "timesNewRoman";
  text-align: center;
  text-transform: uppercase;
}
.show-item img {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.column-2 {
  width: 50%;
  padding: 20px;
}
.column-2 h3 {
  font-size: 25px;
  font-weight: 100;
  font-family: "timesNewRoman";
  text-transform: uppercase;
}
.col-1 p,
.column-2 p {
  margin-top: 1.5rem;
  font-size: 20px;
  line-height: 27px;
  font-weight: 100;
}

.intro-ring {
  height: 280px;
  padding: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.metal-quallity {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.metal-info {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3rem;
}
.metal-info p {
  margin-top: 1.5rem;
  font-size: 18px;
  line-height: 27px;
  font-weight: 100;
}
.metals {
  width: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.socials{
  padding: 20px;
  text-align: center;
  margin: 4rem auto 4rem;
}

.icon{
  height: 60px;
}
.social-links{
display: inline-flex;
flex-wrap: wrap;
}
.social-link{
margin: 10px;
}

.social-heading{
  font-size: 22px;
}

/* ! social end */
/* !loader */
.Loader_con {
  text-align: center;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #000000;
  z-index: 999999;
  position: fixed;
}

.loading {
  margin: 0;
  padding-top: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Loader_con h3 {
  margin-top: 10px;
  color: white;
  font-size: 23px;
}
/* ************ */
@keyframes preloading {
  0% {
    fill-opacity: 1;
  }

  23.333% {
    fill-opacity: 0.6;
  }

  33.333% {
    fill-opacity: 1;
  }
}

/* left corner */
.p7 {
  animation: preloading 1s infinite;
  animation-delay: .2s;
}

.p6 {
  animation: preloading 1s infinite;
  animation-delay: .4s;
}


/* middle */
.p5 {
  animation: preloading 1s infinite;
  animation-delay: .6s;
}

/* right corner */
.p4 {
  animation: preloading 1s infinite;
  animation-delay: 0.8s;
}

.p8 {
  animation: preloading 1s infinite;
  animation-delay: 1s;
}

/* ************ */
/* !loader End */
/* ! Footer */

footer {
  font-size: 15px;
  background-color: black;
  /* position: absolute; */
  bottom: 0;
  width: 100%;
  color: white;
  padding: 10px;
  font-family: "timesNewRoman";
  padding-bottom: 2rem;
}

.foot-column {
  text-align: center;
  width: 33.33%;
  padding-bottom: 2rem;
}

.foot-column h4 {
  padding-bottom: 1.5rem;
}

.footer-row {
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
}
.foot-column li {
  line-height: 25px;
  list-style: none;
}
footer a {
  text-decoration: none;
  color: grey;
  transition: 0.2s ease-in-out;
}
footer a:hover {
  text-decoration: none;
  color: whitesmoke;
  transition: 0.2s ease-in-out;
}

.copy p {
  width: 100%;
}

/* ! Footer End */

/* !engagement page */

.show-item2 {
  height: 150px;
  width: 200px;
  margin: 20px;
  text-align: center;
}
.show-item2 h3 {
  font-weight: 100;
  font-family: "timesNewRomanBold";
  text-align: center;
}
.show-item2 img {
  height: 100%;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* !slides */
.mySlides img {
  vertical-align: middle;
  width: 100%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

.slide-deck {
  position: relative;
}

/* Next & previous buttons */
.prev {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;

}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(107, 29, 29, 0.507);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: rgba(32, 27, 27, 0.884);
  padding: 2px 16px;
  color: white;
}

.slide-row:after {
  content: '';
  display: table;
  clear: both;
}

/* Six columns side by side */
.slide-column {
  float: left;
  width: 10%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.7;
}

.active,
.demo:hover {
  opacity: 1;
}
.container50{
position: relative;
}
.container60{
width: 60%;
}
.container40{
width: 40%;
}
.container95 {
  width: 95%;
  padding: auto;
  position: relative;
  margin-top: -50px;
}
/* !slides End */
/* !engagement page End */

/* !Foreva Page  */
.show-item3 {
  height: 200px;
  width: 200px;
  margin: 20px;
  text-align: center;
}
.show-item3 h3 {
  font-weight: 100;
  font-family: "timesNewRoman";
  text-align: center;
}
.show-item3 img {
  height: auto;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
/* !Foreva Page End */

/* !event page  */
.event-hero {
  width: 100%;
  height: 100vh;
  background: url("https://www.teahub.io/photos/full/225-2252672_diamond-jewelry-wallpapers-data-src-free-download-best.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.event-hero::after {
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.event-hero h1 {
  color: rgb(201, 201, 201);
  padding-top: 15%;
  font-family: "timesNewRomanBold";
  text-align: center;
  font-size: 65px;
  font-weight: lighter;
  z-index: 40;
}

.event-hero p {
  color: rgb(163, 163, 163);
  padding-top: 0;
  text-align: center;
  font-size: 22px;
  font-weight: lighter;
}
.pendant-hero {
  width: 100%;
  height: 100vh;
  background: url("/images/wp1890322.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pendant-hero::after {
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.pendant-hero h1 {
  color: rgb(201, 201, 201);
  padding-top: 15%;
  font-family: "timesNewRomanBold";
  text-align: center;
  font-size: 65px;
  font-weight: lighter;
  z-index: 40;
}
.pendant-hero p {
  color: rgb(163, 163, 163);
  padding-top: 0;
  text-align: center;
  font-size: 22px;
  font-weight: lighter;
}
.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.671);
}


/* ! contact form */
form{
  padding: 20px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Style inputs */
input[type="text"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

button[id='submit'] {
  position: relative;
  padding: 8px 16px;
  background: goldenrod;
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 1.5rem;
}

button[id='submit']:active {
  position: relative;
  padding: 8px 16px;
  background: goldenrod;
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.details  {
  margin-top: 20px;
}
.details ul li {
  line-height: 25px;
  list-style: none;
}
/* Style the container/contact section */
.contact-container {
  border-radius: 5px;
  /* background-color: #f2f2f2; */
  padding: 10px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.map {
  width: 100%;
  height: 450px;
}
/* Create two columns that float next to eachother */
.contact-column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
  font-size: 16px;
}

/* Clear floats after the columns */
.contact-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .contact-column,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }

form {
  padding: 10px;
}
}
/* ! contact form End */

/* ! Result */
.result{
  height: auto;
  padding-top: 15%;

}
.justify {
  display: block;
  justify-self: center;
}
.result h1 {
  color: rgb(44, 44, 44);
  padding-top: 5%;
  font-family: "timesNewRomanBold";
  text-align: center;
  font-size: 35px;
  font-weight: lighter;
  z-index: 40;
}

.result p {
  color: rgb(163, 163, 163);
  padding-top: 0;
  font-family: "Mate SC", serif;
  text-align: center;
  font-size: 22px;
  font-weight: lighter;
}

.exit {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  z-index: 100;
  background: linear-gradient(0deg,
      rgba(114, 114, 114, 0.514) 0%,
      rgba(207, 207, 207, 0) 100%);
  width: 100px;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border: 1px solid rgba(192, 192, 192, 0.308);
  border-radius: 5px;
  transition: 2s ease-in-out;
}
.centered-top {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
max-width: 600px;
min-width: 300px;
padding: 20px;
  border-radius: 5px;
}
/* ! Result End */

@media only screen and (max-width: 760px) {
  .nav .logo {
    width: 100px;
  }
  .main-logo {
    width: 75%;
    display: block;
    padding-top: 45%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero p {
    color: rgb(163, 163, 163);
    padding-top: 0;
    font-family: "Mate SC", serif;
    text-align: center;
    font-size: 15px;
    font-weight: lighter;
  }
  nav {
    justify-content: space-between;
    padding: 10px 5vw 10px;
  }
  .nav-links {
    position: absolute;
    justify-content: space-evenly;
    right: 0;
    top: 0vh;
    min-height: 92vh;
    background: rgba(0, 0, 0, 0.87);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding-top: 20px;
    transform: translateX(100%);
    transition: All 0.5s ease-in;
  }
  .nav-links a {
    opacity: 0;
  }
  .burger {
    display: block;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    padding: 2.5px;
    justify-content: space-around;
  }
  .show-item2 {
  height: 100px;
  width: 100px;
  margin: 22px;
  text-align: center;
}
  .metal-info {
    width: 85%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 640px) {
  .hero {
    width: 100%;
    height: 70vh;
    background: url("/images/Untitled-2.png") center no-repeat;
    background-size: cover;
    /* position: relative; */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .event-hero {
    width: 100%;
    height: 70vh;
    background: url("https://www.25cineframes.com/images/gallery/2017/01/naga-chaitanya-and-samantha-ruth-prabhu-engagement-photos/04-Naga-Chaitanya-and-Samantha-Ruth-Prabhu-Engagement-Photos-Ultra-HD-Pics-Chaitu-Samantha-Images-Stills.jpg")
      center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero h1 {
    color: rgb(201, 201, 201);
    padding-top: 15%;
    font-family: "Mate SC", serif;
    text-align: center;
    font-size: 45px;
    font-weight: lighter;
    z-index: 40;
  }
  .event-hero h1 {
    color: rgb(201, 201, 201);
    padding-top: 15%;
    font-family: "Mate SC", serif;
    text-align: center;
    font-size: 45px;
    font-weight: lighter;
    z-index: 40;
  }
  .pendant-hero h1 {
    color: rgb(201, 201, 201);
    padding-top: 15%;
    font-family: "Mate SC", serif;
    text-align: center;
    font-size: 45px;
    font-weight: lighter;
    z-index: 40;
  }

  .column-2 {
    width: 100%;
    padding: 10px;
  }
  .metals {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .memories-col {
    width: 90%;
    padding: 0;
    font-size: 18px;
    font-weight: 100;
  }
  .event-col {
    width: 90%;
    padding: 0;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
  }
  .foot-column {
    text-align: center;
    width: 90%;
    padding-bottom: 2rem;
  }
  nav {
    justify-content: space-between;
    padding: 0 5vw;
  }
}
.nav-active {
  transform: translateX(0);
}
@media only screen and (max-width: 460px) {
  .nav-links {
    width: 100%;
    transition: All 0.5s ease;
  }

}
.nav-active {
  transform: translateX(0);
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
/* ? navigation End*/
