@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
#root {
  font-size: calc(sqrt(10000vw + 10000vh) / 112);
}

html {
  background: #151515;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: none;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #151515;
}

h1 {
  font-weight: 700;
  font-size: 4rem;
}

.container {
  padding: 2.75rem 4.15vw;
  z-index: 1;
  position: relative;
}

.card {
  width: 100%;
  height: auto;
  padding: 2.75vw 4.15vw;
  overflow: hidden;
  border: 0.09375rem #151515 solid;
  border-radius: 3rem;
}

button {
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  background: #B1F551;
  border: none;
  outline: none;
  border-radius: 1rem;
}
button.unstroked {
  background: transparent;
}
button.m {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.tip {
  width: 100%;
  padding: 0.5rem 0;
  background: #151515;
  color: #a2ef35;
  text-align: center;
  font-weight: 400;
  font-size: 0.85rem;
  z-index: 0;
  position: sticky;
  top: 0;
}

header {
  padding: 2.75vw 4.15vw !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  z-index: 1;
  position: relative;
  top: 0;
}
header h1 {
  font-size: 2rem;
  letter-spacing: -0.05rem;
}
header h1 span {
  letter-spacing: -0.5rem;
  padding-right: 0.5rem;
}

.main {
  display: flex;
  height: 85vh !important;
  padding-top: 0;
  background: white;
}
.main > .card {
  display: flex;
  justify-content: space-between;
  gap: 4.15vw;
  overflow: hidden;
  position: relative;
}
@keyframes ci {
  from {
    transform: scale(1.75) rotateZ(0);
  }
  to {
    transform: scale(1.75) rotateZ(359.9deg);
  }
}
.main > .card svg {
  position: absolute;
  left: -15%;
  bottom: -30%;
  width: 40vw;
  transform: scale(1.75);
  transform-origin: center;
  animation: ci linear 20s 0s infinite;
  z-index: 1;
}
.main > .card svg #circlePath {
  fill: none;
}
.main > .card svg textPath {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  fill: #B1F551;
  letter-spacing: -0.15rem;
}
.main > .card .content {
  width: 50%;
  display: flex;
  gap: 3rem;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.main > .card .content h1 {
  /* PERSONAL CARD */
  text-transform: uppercase;
  font-weight: 600;
  font-size: 42px;
  line-height: 51px;
  letter-spacing: 0.05em;
}
.main > .card .content p {
  text-align: justify;
  font-size: 1.5rem;
}
.main > .card .card {
  max-width: 27vw;
  height: 100%;
  padding: 0;
  justify-self: flex-end;
  border: none;
  position: relative;
}
.main > .card .card picture {
  width: 100%;
  height: 100%;
}
.main > .card .card picture img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

section {
  height: 85vh;
}/*# sourceMappingURL=style.css.map */