@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

:root {
  --main-color: #b0b0b0;
  --second-color: rgb(244, 198, 155);
  --second-bg-color: rgb(150, 119, 134);
  --button-color: #ce8664;
  --shade-color: rgb(165, 125, 140);
  --shade2-color: rgb(111, 94, 122);
}

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  background: var(--main-color);
}

#header {
  max-width: 1505px;
  margin: 0 auto;
  padding: 50px 50px 0px;
}

#header > nav {
  display: flex;
  justify-content: space-between;
}

.logo > h1 {
  margin: 0;
  color: white;
  margin-left: 10px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header > nav > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header > nav > a > svg {
  margin-right: 5px;
}

.button {
  background-color: var(--button-color);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;

  border-radius: 25px;

  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.LogoText > .button {
  width: 140px;
}

.LogoText > nav > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 5px 3px;
  height: 25px;
}

.LogoText > nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.LogoText > nav > a > svg {
  margin-right: 5px;
  height: 64px;
}

#particles-js {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    0deg,
    var(--second-bg-color) 0%,
    var(--second-color) 100%
  );
  background-repeat: no-repeat;
}

#MainBot {
  position: relative;
  max-width: 1330px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 500px;
  margin: 0 auto;
  padding: 20px;
  min-height: 72vh;
  /*justify-content: center;*/
}

#MainBot > img {
  height: 450px;
  width: 450px;
  margin-left: 15px;
  transition:
    opacity 1s cubic-bezier(0.46, 0.03, 0.52, 0.96),
    transform 1s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  margin-left: 150px;
  border-radius: 15px;
}

.LogoText {
  /*margin: 150px 50px;*/
  color: white;
  display: flex;
  flex-direction: column;
  transition:
    opacity 1s cubic-bezier(0.46, 0.03, 0.52, 0.96),
    transform 1s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

#AboutBox {
  position: relative;
  min-height: 72vh;
  background-color: color-mix(
    in oklab,
    var(--second-color) 10%,
    var(--second-bg-color) 90%
  );
}

#AboutBox:before {
  position: absolute;
  display: block;
  content: "-";
  width: 100%;
  height: 35px;
  color: transparent;
  background: var(--shade-color); /*var(--main-color);*/
  opacity: 0.2;

  margin-top: -20px;
  backdrop-filter: blur(10px);
  filter: blur(10px);
  z-index: 5;
}
#AboutBox:after {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "-";
  color: transparent;
  /*background: var(--shade2-color);/*var(--main-color);*/
  background: linear-gradient(
    0deg,
    var(--shade2-color) 0%,
    var(--second-bg-color) 100%
  );
  z-index: 1;
  box-shadow: 0px 31px 22px -15px rgba(0, 0, 0, 0.13) inset;
}

#about {
  max-width: 1250px;
  margin: auto;
  padding: 25px 0;
  color: white;
  display: flex;
  flex-direction: column;
}

#about > h2 {
  margin: auto;
  font-size: 2rem;
  z-index: 5;
}

.AboutCard:nth-child(2n) {
  flex-direction: row;
}
.AboutCard:nth-child(2n) {
  text-align: end;
}

.AboutCard {
  display: flex;
  margin: 0 50px;
  padding: 50px 0;
  margin-top: 0px;
  transition: all 1s ease;
  opacity: 1;
  margin-top: 0 !important;
  flex-direction: row-reverse;
  justify-content: center;
  z-index: 5;
}

.AboutCard > div {
  display: flex;
  padding: 0 30px;
  flex-direction: column;
  justify-content: center;
}

.AboutCard > div > h2 {
  font-size: 2.5rem;
}

.AboutCard > div > p {
  font-style: oblique;
  opacity: 0.8;
}

.AboutCard > img {
  width: 400px;
  border-radius: 25px;

  height: 315px;
  object-fit: cover;
}

#footer:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: block;
  content: "-";
  color: transparent;
  background: var(--shade2-color); /*var(--main-color);*/
  z-index: 1;
  box-shadow: 0px -30px 20px -15px var(--second-bg-color) inset;
}

.NavSpliter {
  flex-grow: 1;
}

#footer {
  position: relative;
  /*height: 256px;*/
  padding-bottom: 25px;
  background-color: color-mix(
    in oklab,
    var(--shade2-color) 10%,
    var(--second-bg-color) 90%
  );
}

hr {
  color: var(--second-bg-color);
}

#FooterBox {
  max-width: 1505px;
  margin: auto;
  padding: 0 20px;
  padding-top: 90px;
}

#FooterBox > nav {
  padding-top: 30px;
  position: relative;
}

#FooterBox > nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#FooterBox > nav > a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 15px 15px;
}
#FooterBox > p {
  text-align: center;
  color: white;
}

.HideMeEesy {
  opacity: 0;
  transition: all 5s ease;
  margin-top: -30px !important;
}

.StatsCard {
  transition: all 1s ease;
  background: var(--shade-color);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
  padding: 32px 80px;
  padding-top: 50px;
  position: relative;
  display: flex;
  align-self: flex-start;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.StatsCard > h2 {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-wrap: nowrap;
}
.StatBox {
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 15px;
  width: 200px;
  padding: 32px 0px;
}

.StatBox > svg {
  height: 64px;
  width: 64px;
}
