@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;800&display=swap");

:root {
  --primary-color: #00b4aa;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  font-size: 1.4rem;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  background-color: #fff;
}

.page-content {
  height: 100%;
  display: flex;
  overflow: hidden;
}
.page-content .page-content-left {
  flex: 0 0 30%;
  background-color: var(--primary-color);
  background-image: url("../assets/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page-content .page-content-right {
  position: relative;
  flex: 0 0 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.page-content .page-content-right .inner {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  padding: 50px;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; */
  overflow: hidden;
}

.page-content .page-content-right .icon-1 {
  position: absolute;
  left: 5%;
  top: 10%;
  width: 15vw;
  transform: rotate(30deg);
  opacity: 0.05;
}
.page-content .page-content-right .icon-2 {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 20vw;
  transform: rotate(20deg);
  opacity: 0.05;
}
.page-content .page-content-right .icon-3 {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 15vw;
  transform: rotate(-20deg);
  opacity: 0.05;
}
.page-content .page-content-right .icon-4 {
  position: absolute;
  left: 5%;
  bottom: 10%;
  width: 15vw;
  transform: rotate(-20deg);
  opacity: 0.05;
}

.logo {
  max-width: calc(350px + 5vw);
  margin: 0 auto;
}
.logo img {
  width: 100%;
  height: auto;
}

.text {
  text-align: center;
}

.text h3 {
  font-size: 4.2rem;
  letter-spacing: -0.2rem;
  /* color: var(--primary-color); */
}

.text-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-actions a {
  font-size: 1.8rem;
  color: #000;
  text-decoration: none;
}

.copyright {
  position: absolute;
  font-size: 11.5px;
  color: rgb(124, 124, 124);
  bottom: 15px;

  display: none;
}
.copyright a {
  color: rgb(124, 124, 124);
  text-decoration: none;
}

.page-content .page-content-right {
  overflow-y: auto;
  overflow-x: hidden;
}

@media only screen and (max-width: 991px) {
  .text h3 {
    font-size: 4.2rem;
    line-height: 1.4;
  }
  .copyright {
    display: none;
  }
  .logo {
    max-width: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .page-content .page-content-left {
    display: none;
  }
  .page-content .page-content-right {
    flex: 0 0 100%;
    justify-content: flex-start;
    padding-top: 0px;
  }
  .page-content .page-content-right .inner {
    padding-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .page-content .page-content-right .icon-1 {
    top: 2%;
    width: 25vw;
  }
  .page-content .page-content-right .icon-2 {
    width: 40vw;
  }
  .page-content .page-content-right .icon-3 {
    width: 25vw;
  }
  .page-content .page-content-right .icon-4 {
    width: 25vw;
    bottom: 2%;
  }
  .text h3 {
    /*font-size: 5.4rem;*/
  }
  .logo {
    max-width: 200px;
    margin: 0 auto;
  }
}
