* {
  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;
}

header,
section {
  font-size: 1.6rem;
}
@font-face {
  font-family: "etna";
  src: url(assets/etna-free-font.otf);
}

:root {
  --font-1: "etna";
  --white: #ffffff;
  --black: #000000;
}

.page {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6rem 4% 2rem 4%;
  gap: 2rem;
}
/* ========bottom-side======== */
.bottom-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 4rem 4% 2rem 4%;
}

/* =========heading section======== */
.text-img-cover {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 6;
}

.heading {
  white-space: nowrap;
  font-size: 10rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: #464545;
}

/* ========btns section======== */
.btns-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: visible;
}
.btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
}
.link-btn {
  padding: 0 1rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  z-index: 10;
  background-color: var(--white);
  border: 2px solid #000000;
  box-shadow: 0px 0.15rem 0.15rem #000000;
}
.btn:hover,
.link-btn:hover {
  border-radius: 10px;
}

.link-btn img {
  width: 100%;
  height: auto;
}

/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
}
.copy-btn {
  background-color: var(--black);
  cursor: pointer;
  transition: all 0.4s;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.copy-btn img {
  width: 2.5rem;
  height: auto;
  cursor: pointer;
  transition: all 0.4s;
}
.copy-btn:hover .copy-img {
  transform: scale(1.06);
}
.copy-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  border: 0.47px solid #000000;
}
.ca {
  font-weight: 400;
  font-size: 3.5rem;
  background-color: var(--black);
  padding: 1rem;
  color: var(--white);
}
.copy-text p {
  font-weight: 400;
  padding: 1rem;
  font-size: clamp(1rem, 1.3rem, 1.5rem);
}
/* ========main-img section======== */
.side-img {
  height: auto;
  width: 100%;
  position: relative;
  z-index: 5;
  max-width: 48rem;
}
.pills {
  width: 10rem;
  height: auto;
}

.left-pills {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.right-pills {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
}
#pills1 {
  width: 20%;
  max-width: 6rem;
  height: auto;
}
#pills2 {
  width: 25%;
  max-width: 6rem;
  height: auto;
  margin-left: auto;
}
#pills3 {
  width: 30%;
  max-width: 12rem;
  height: auto;
  margin-top: 10rem;
}
#pills4 {
  width: 30%;
  max-width: 8rem;
  height: auto;
  margin-left: auto;
  transform: rotate(90deg);
}
#pills5 {
  width: 35%;
  max-width: 10rem;
  height: auto;
  position: relative;
  left: 5%;
}
#pills6 {
  width: 25%;
  max-width: 8rem;
  height: auto;
  position: relative;
  left: 50%;
}
.pills 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: 700px) {
  .copy-text p {
    font-size: 1.5vmin;
  }
}
@media (max-width: 1200px) {
  .heading {
    font-size: 8rem;
  }
}
@media (max-width: 850px) {
  .text-img-cover {
    flex-direction: column;
    gap: 2rem;
  }
  .text {
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom:2rem;
  }
}
@media (max-width: 500px) {
  .heading {
    font-size: 16vw;
    white-space: wrap;
  }
  .bottom-side {
    flex-direction: column;
  }
  .right-pills,
  .left-pills {
    width: 100%;
  }
  #pills3 {
    margin-top: 2rem;
  }
}
