* {
  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;
}
@font-face {
  font-family: "gro";
  src: url(assets/GROBOLD.ttf);
}
:root {
  --font-1: "gro";
  --font-2: "Montserrat", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --nav-height: 80px;
}

.page {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
background: radial-gradient(83.06% 83.06% at 50% 27.3%, #375289 0%, #1E304F 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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2rem;
  padding: 2rem 2% 2rem 2%;
    flex: 1;
}

/* ========bottom-side======== */
.bottom-side {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 5;
  width: 100%;
}
.center-box {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  align-items: center;
  background-color: #FFEA00;
  width: 100%;
  padding: 1rem 0;
  overflow: hidden;
}
.scrolling-content {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
/* =========heading section======== */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  position: relative;
  z-index: 6;
  gap: 2rem;
}

.heading {
  color: #FFEA00;
  font-weight: 500;
  text-align: center;
  line-height: 100%;
  font-size: 13vw;
  -webkit-text-stroke: 0.4rem #1E304F;
  text-shadow: 0.4rem 0.9rem  0 #0E1726;

}
.moving-text {
  color: #273C64;
font-weight: 500;
  font-size: 4.5rem;
  white-space: nowrap;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ========btns section======== */
.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: 2.23px solid #273C64;
  box-shadow: 0px 0.142rem 0.142rem #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.182rem 0.182rem #000000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
}
.copy-btn {
  background-color: #273C64;
  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: #273C64;
  padding: 1rem;
  font-weight: 500;
  border-right: 0.61px solid #000000;
}
.copy-text p {
  color: #273C64;
  font-weight: 500;
  padding: 1rem;
  font-size: clamp(0.8rem, 0.6rem, 1rem);
}
/* ========main-img section======== */

.side-img {
  height: auto;
  position: relative;
  z-index: 5;
}
#side-img-1 {
    width: 26%;
  max-width: 35rem;
  margin-left: auto;
  position: relative;
  top: 25rem;
  margin-top: -25rem;
}
#side-img-2 {
    width: 28%;
  max-width: 35rem;
  margin-right: auto;
  bottom: 30rem;
  margin-bottom: -30rem;
}
#side-img-3{
  width: 100%;
}
.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: 1000px) {
#side-img-1 {
  top: 20rem;
  margin-top: -20rem;
}
#side-img-2 {
  bottom: 20rem;
  margin-bottom: -20rem;
}
}
@media (max-width: 850px) {
#side-img-1 {
  top: 10rem;
  margin-top: -10rem;
}
#side-img-2 {
  bottom: 10rem;
  margin-bottom: -10rem;
}

}
@media (max-width: 800px) {
  .heading{
    font-size: 18rem;
  }
#side-img-1 {
    width: 80%;
  max-width: 35rem;
  top: 0;
  margin-top: 0;
}
#side-img-2 {
    width: 80%;
  max-width: 35rem;
  bottom: 0;
  margin-bottom: 0;
}

}
@media (max-width: 600px) {
    .heading {
    font-size: 26vw;
      -webkit-text-stroke: 0.5vw #1E304F;
  text-shadow: 0.4vw 1.3vw  0 #0E1726;
  }
  .copy-text p {
    font-size: 1.5vmin;
  }

  .scrolling-content {
    gap: 2rem;
  }
  .moving-text {
    font-size: 3rem;
  }
}
@media (max-width: 510px) {

}
