* {
  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;
}

header,
section {
  font-size: 1.6rem;
}

:root {
  --font-1: "Skranji", system-ui;
  --font-2: "riffic";
  --white: #ffffff;
  --black: #000000;
}

.page {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #1082dd;
  overflow: hidden;
}
.page::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 1;
}

.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 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;
  margin-bottom: 2rem;
}

.heading {
  font-weight: 700;
  font-style: Bold;
  font-size: 16rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--white);
}

/* ========btns section======== */
.btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
  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;
  border-radius: 10px;
  background-color: var(--white);
  border: 2px solid #0a5ea2;
  box-shadow: 0px 0.19rem 0.19rem #000000;
}
.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.2rem 0.2rem #000000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.copy-btn {
  background-color: #0a5ea2;
  cursor: pointer;
  transition: all 0.4s;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
border: 2px solid #0A5EA2;
}
.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: 2px solid #0A5EA2;
}
.ca {
  font-weight: 400;
  font-size: 3rem;
  background-color: #0a5ea2;
  padding: 1rem;
  border-right: 2px solid #0A5EA2;
}
.copy-text p {
  color: #0a5ea2;
  font-weight: 400;
  padding: 1rem;
  font-size: clamp(1rem, 1.3rem, 1.5rem);
}
/* ========main-img section======== */
.side-img {
  height: auto;
  width: 90%;
  position: relative;
  z-index: 5;
  max-width: 50rem;
}

.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: 800px) {
}

@media (max-width: 700px) {
  .copy-text p {
    font-size: 1.8vmin;
  }
}
@media (max-width: 780px) {
  .heading {
    font-size: 18vw;
  }
}
