@font-face {
  font-family: "FSMeridian-Bold";
  src: local("FSMeridian-Bold"),
    url("../fonts/FSMeridian-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Century-Gothic";
  src: local("Century-Gothic"),
    url("../fonts/Century-Gothic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
html {
  width: 100%;
  height: 100%;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background: #6c6c6c;
  color: #f2f2f2;
  height: 100%;
}
.root {
  width: 100%;
  min-height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.root::after {
  content: "";
  position: absolute;
  width: 100%;
  min-height: 100%;
  background-image: url("../img/NoiseTexture.png");
  top: 0;
  z-index: 3;
  opacity: 0.04;
}
.circle-1 {
  width: 524px;
  height: 364px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/circle-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.circle-2 {
  width: 765px;
  height: 566px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/circle-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(250px);
  backdrop-filter: blur(250px);
  z-index: 2;
}
.wrapper {
  min-height: 100vh;
  max-width: 1530px;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 36px 0;
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  letter-spacing: 0.185em;
  font-family: 'FSMeridian-Bold', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #f2f2f2;
}
.logo-img {
  width: 56px;
  height: 32px;
  background-image: url("../img/Logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.logo-text {
  margin-left: 5px;
}
.discord-icon {
  width: 25px;
  height: 29px;
  background-image: url("../img/DiscordIcon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.body {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.fuulscreen {
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: flex-end;
}
.info {
  max-width: 653px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 6;
}
.info-header {
  max-width: 470px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 112px;
}
.info-footer {
  text-orientation: mixed;
  writing-mode: vertical-lr;
  font-family: 'FSMeridian-Bold', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 72px;
  letter-spacing: 0.185em;
  transform: translate(8px, -5px);
}
.info-title {
  font-family: "Century-Gothic";
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.185em;
}
.info-text {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.04em;
  margin-top: 37px;
  color: #cecece;
}
.info-btn {
  margin-top: 75px;
  background: rgba(83, 83, 83, 0.6);
  border-radius: 20px 0px 20px 20px;
  border: none;
  font-weight: bold;
  font-size: 18px;
  line-height: 120.69%;
  letter-spacing: 0.04em;
  color: #d0d0d0;
  padding: 9px 42px;
  box-sizing: border-box;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.1s ease-in-out;
}
.info-btn:hover {
  background: rgba(70, 70, 70, 0.6);
  transition: all 0.1s ease-in-out;
}
.circles {
  position: relative;
  margin-top: 260px;
  transition: all 0.2s ease-in-out;
}
.circles:hover .yellow {
  transform: translate(96px, -96px);
  transition: all 0.2s ease-in-out;
}
.circles:hover .blue {
  transform: translate(48px, 0);
  transition: all 0.2s ease-in-out;
}
.circles:hover .red {
  transform: translate(144px, 0);
  transition: all 0.2s ease-in-out;
}
.circles:hover {
  transform: translateY(-50px);
  transition: all 0.2s ease-in-out;
}
.circle {
  position: absolute;
  width: 192px;
  height: 192px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}
.blue {
  background-image: url("../img/circle-blue.svg");
}
.yellow {
  background-image: url("../img/circle-yellow.svg");
  transform: translateX(96px);
}
.red {
  background-image: url("../img/circle-red.svg");
  transform: translateX(192px);
}

@media (max-width: 1550px) {
  .wrapper {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media (max-height: 620px) {
  .root {
    padding-bottom: 50px;
  }
}
@media (max-width: 1200px) {
  .info-header {
    margin-right: 70px;
  }
}
@media (max-width: 991.98px) {
  .circle {
    width: 96px;
  }
  .yellow {
    transform: translateX(48px);
  }
  .red {
    transform: translateX(96px);
  }
  .circles:hover .yellow {
    transform: translate(48px, -48px);
    transition: all 0.2s ease-in-out;
  }
  .circles:hover .blue {
    transform: translate(24px, 0);
    transition: all 0.2s ease-in-out;
  }
  .circles:hover .red {
    transform: translate(72px, 0);
    transition: all 0.2s ease-in-out;
  }
  .circles:hover {
    transform: translateY(-20px);
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 767.98px) {
  .info-text {
    font-size: 16px;
  }
  .circle-1 {
    width: 330px;
    height: 230px;
  }
  .circle-2 {
    width: 350px;
    height: 260px;
  }
  .bg {
    backdrop-filter: blur(100px);
  }
  .fuulscreen {
    align-items: flex-start;
  }
  .circles {
    margin-top: 330px;
  }
  .info-header {
    margin-right: 10px;
  }
  .info-btn {
    margin-top: 30px;
  }
  .info-text {
    font-size: 14px;
  }
  .info-title {
    font-size: 16px;
  }
  .info-footer {
    letter-spacing: 0.25em;
  }
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background: transparent;
  width: 10px;
  background: #1B2032;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(126, 135, 139, 0.6);
  transition: all 0.2s ease-in-out;
}

body::-webkit-scrollbar-thumb:hover {
  background: #4a5158;
  transition: all 0.2s ease-in-out;
}