* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-1);
}
html {
  /* 1rem = 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #c6a053;
}

header,
section {
  font-size: 1.6rem;
}
:root {
  --font-1: "Londrina Solid", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --nav-height: 60px;
}
.navbar {
  min-height: var(--nav-height);
  background-color: #d9d9d9;
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 5;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo span {
  font-weight: 400;
  font-size: 4.5rem;
  font-weight: 400;
  text-transform: uppercase;
}
.page {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #c6a053;
}

.page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
/* =========top-side======== */

.top-side {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: 1;
  gap: 2rem;
  padding-top: 10rem;
  padding-bottom: 3rem;
}

/* ========bottom-side======== */
.bottom-side {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* =========heading section======== */
.text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 5;
}
.text {
  width: fit-content;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;

  gap: 2rem;
  margin-left: 8%;
}

.heading {
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  color: var(--white);
  line-height: 91%;
  letter-spacing: 0%;
}
.heading1 {
  white-space: nowrap;
  font-size: 12rem;
  -webkit-text-stroke: 0.2rem var(--black);
}
.heading2 {
  font-size: 9rem;
  color: var(--black);
  -webkit-text-stroke: 0.1rem var(--white);
  margin-left: 8%;
  margin-right: 8%;
}

.para {
  font-size: 2.8rem;
  max-width: 60rem;
  font-weight: 300;
  font-style: Light;
  letter-spacing: 0%;
  text-transform: uppercase;
}

/* ========btns section======== */
.btns-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 0.8rem;
}
.link-btn {
  padding: 0 1rem;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  z-index: 10;
}
.btn:hover,
.link-btn:hover {
  transform: translateY(-8px);
}

.link-btn img {
  width: 100%;
  height: auto;
}

/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 5;
  gap: 2rem;
}
.copy-btn {
  padding: 0.7rem;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  z-index: 5;
  font-weight: 300;
  font-size: 2.8rem;
  font-style: Light;
  text-transform: uppercase;
  background-color: #346eb6;
}
.copy-btn:hover {
  border-radius: 15px;
}
.copy-text {
  align-content: center;
  text-align: center;
}

.copy-text p {
  padding: 1rem;
  font-size: clamp(1.3rem, 1rem, 1.5rem);
  font-weight: 300;
  font-style: Light;
  text-transform: uppercase;
}
#copy-btn-box2 .copy-text {
  background-color: #d9d9d9;
}
/* ========main-img section======== */

.side-img {
  align-content: center;
  height: auto;
  width: 90%;
  margin-right: 8%;
  max-width: 46rem;
  position: relative;
  z-index: 5;
}
#behind-img {
  position: absolute;
  width: 100%;
  height: auto;
}
.img-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5%;
  justify-content: center;
  background-color: #d9d9d9;
  padding: 1rem 8% 1rem 8%;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.inside-img {
  width: 8rem;
  height: auto;
}

#inside-img3 {
  width: 7rem;
}
.inside-img img,
.side-img .img {
  width: 100%;
  height: 100%;
}

/* responsiveness */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 1110px) {
  .heading1 {
    font-size: 11rem;
  }
  .heading2 {
    font-size: 8.5rem;
  }
}

@media (max-width: 850px) {
  .heading2 {
    margin-left: 6%;
    margin-right: 6%;
  }
  .bottom-side {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .heading {
    white-space: wrap;
  }
  .navbar {
    padding: 1rem 6% 1rem 6%;
  }
  .top-side {
    flex-direction: column;
    padding: 10rem 6% 3rem 6%;
  }
  .text {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }
  .text-wrap {
    align-items: center;
    justify-content: center;
  }
  .side-img {
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  #copy-btn-box1 {
    display: none;
  }
  .navbar {
    justify-content: center;
  }
  .copy-btn-box {
    flex-direction: column;
    align-items: center;
  }
  .copy-text p {
    font-size: 3vmin;
  }
}
@media (max-width: 500px) {
  .inside-img {
    width: 6rem;
  }
  #inside-img3 {
    width: 5rem;
  }
  .heading1 {
  font-size: 10rem;
}
.heading2 {
  font-size: 8rem;
}
}
