* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--white);
  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: radial-gradient(
    87.95% 87.95% at 50% 27.3%,
    #3473cd 0%,
    #255394 100%
  );
}

header,
section {
  font-size: 1.6rem;
}
@font-face {
  font-family: "riffic";
  src: url(assets/RifficFree-Bold.ttf);
}
:root {
  --font-1: "riffic";
  --white: #ffffff;
  --black: #000000;
}

.page {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(
    87.95% 87.95% at 50% 27.3%,
    #3473cd 0%,
    #255394 100%
  );
}

.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-evenly;
  gap: 1rem;
  width: 100%;
  padding: 2rem 3% 2rem 3%;
}
/* ========bottom-side======== */
.bottom-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 5;
  width: 100%;
  flex: 1;
  padding: 2rem 3% 0 3%;
}

/* =========heading section======== */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 6;
}

.heading {
  font-weight: 700;
  font-style: Bold;
  font-size: 24rem;
  line-height: 100%;
  letter-spacing: 7px;
}
.buy-btn {
  background-color: var(--white);
  padding: 1rem 1.5rem;
  border: 2.67px solid #1475c6;
  box-shadow: 0px 0.17rem 0.17rem #000000;
  outline: none;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
.buy-btn span {
  font-size: 5rem;
  white-space: nowrap;
  font-weight: 700;
  font-style: Bold;
  font-size: 4rem;
  color: #2b61ad;
}

/* ========btns section======== */
.btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.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: 2.67px solid #1475c6;
  box-shadow: 0px 0.17rem 0.17rem #000000;
}
.buy-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;
  box-shadow: 0px 0.182rem 0.182rem #000000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.copy-btn {
  background-color: #265496;
  cursor: pointer;
  transition: all 0.4s;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  border: 0.69px solid #000000;
}
.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.61px solid #000000;
}
.ca {
  font-size: 3.5rem;
  background-color: #265496;
  padding: 1rem;
  font-weight: 700;
  font-style: Bold;
  border-right: 0.61px solid #000000;
}
.copy-text p {
  color: #1475c6;
  font-weight: 700;
  font-style: Bold;
  padding: 1rem;
  font-size: clamp(1rem, 1.3rem, 1.5rem);
}
/* ========main-img section======== */

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-img {
  height: auto;
  width: 90%;
  position: relative;
  z-index: 5;
}
#side-img-1 {
  max-width: 50rem;
}
#side-img-2 {
  max-width: 50rem;
  position: relative;
  bottom: -7px;
}
.top-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.top-img img,
.side-img .img {
  width: 100%;
  height: 100%;
}
.left-img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 3rem;
  width: 10%;
  height: 100%;
}
.right-img {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
 max-width: 3rem;
  width: 10%;
  height: 100%;
}
/* responsiveness */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 1250px) {
  .heading {
    font-size: 21rem;
  }
}
@media (max-width: 1200px) {
  .heading {
    font-size: 19rem;
  }
}
@media (max-width: 1050px) {
  .heading {
    font-size: 17rem;
  }
}
@media (max-width: 850px) {
  .top-side {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 3rem;
  }
  .buy-btn {
    padding: 1rem;
  }
  .buy-btn span {
    font-size: 3rem;
  }
}

@media (max-width: 700px) {
  .ca {
    font-size: 3rem;
  }
  .copy-text p {
    font-size: 1.8vmin;
  }
}
@media (max-width: 500px) {
  .heading {
    font-size: 28vw;
    letter-spacing: 4px;
  }
}
@media (max-width: 600px) {
  .wrap {
    flex-direction: column;
    gap: 2rem;
  }
  #btn2 {
    display: none;
  }
}
