@import url(reset.css);

@font-face {
  font-family: "Cosmata";
  src: url("../font/Cosmata-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cosmata";
  src: url("../font/Cosmata-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cosmata Semi";
  src: url("Cosmata-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Cosmata";
}

body {
  background: #666dc2;
}

.bg-grr {
  background: #f3f4ff;
}

p {
  line-height: 160%;
  color: #3f3f3f;
}

a {
  font-weight: bold;
  font-size: 18px;
}

a span.line-span {
  position: relative;
  transition: 0.1s;
}

a span.link-span {
  position: absolute;
  z-index: 9999;
}

a span.line-span::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  background: #020202;
  border-radius: 10px;
  bottom: 0;
  left: 0;
}

span.arrow-span {
  color: #5fb47e;
}

a:hover span.line-span::before {
  background: #a7a7a7;
}

a.disable:hover {
  color: #a7a7a7;
  cursor: not-allowed;
}

a:hover span.arrow-span {
  padding-left: 3px;
  transition: 0.1s;
  color: #a7a7a7;
}

.team-img-parent > div {
  overflow: hidden;
  border-radius: 20px;
}

.team-img-parent > div:hover img {
  scale: 1.2;
  transition-delay: 1s;
}

.team-img-parent img {
  border-radius: 20px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  transition: 5s ease-in-out;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px !important;
  }
}

.menu {
  background: #fff;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.305);
  cursor: pointer;
  transition: 0.05s ease;
}

.menu:hover {
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.305);
}

.menu img {
  height: 70px;
  padding: 15px;
  margin: 0 auto;
}

.title {
  font-family: "Cosmata";
  font-weight: bold;
  font-size: 60px;
  color: #fff;
  transition: 0.1s;
  line-height: 120%;
}

.title-dark {
  color: #020202;
}

.title:hover {
  word-spacing: -1px;
  letter-spacing: -1px;
}

.title-border {
  border-top: 2px solid #a7a7a7;
}

.mini-title {
  letter-spacing: 0.1px;
  word-spacing: 2px;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.team-parent {
  margin-top: 40px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

.team-parent .team-img {
  border-radius: 10px;
  height: 370px;
  overflow: hidden;
}

.team-parent .team-img img {
  border-radius: 10px;
  transition: 0.1s ease;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.team-parent .team-name {
  font-size: 22px;
  font-weight: bold;
}

.team-parent .team-post {
  font-weight: 600;
  font-size: 13px;
  color: #505050;
}

.web-icon {
  display: block;
  position: absolute;
  top: 16px;
  left: -40px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: url(../img/web.svg) center center no-repeat #fff;
  background-size: 26px;
  box-shadow: 6px 8px 18px 0px #0000002e;
  transition: 0.1s;
  z-index: 99999;
}

.web-icon:hover {
  box-shadow: 6px 8px 18px 0px #00000051;
}

.team-parent:hover .team-img img {
  scale: 1.1;
}

.team-parent:hover .web-icon {
  left: 16px;
}

/*  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Space+Mono:wght@400;700&display=swap");

.hidden {
  display: none;
}

.f_container {
  background: linear-gradient(
    297deg,
    rgba(80, 72, 200, 1) 0%,
    rgba(102, 109, 194, 1) 53%
  );
  height: calc(100vh - 50px);
  width: calc(100vw - 50px);
  /* margin: 25px; */
  border-radius: 45px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.main {
  margin-bottom: 10px;
  height: calc(100% - 210px);
  border-radius: 35px 35px 0 0;
  padding: 20px;
  box-sizing: border-box;
  display: grid;
}

.logo img {
  height: 60px;
}

.logo {
  margin: 0 auto;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  margin: 20px 0;
  font-size: 32px;
  font-family: "Space Mono", monospace;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: -1px;
}

.content .main_text {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.759);
  margin: 10px 0;
  line-height: 24px;
  text-align: justify;
}

.main_text::selection {
  background-color: #fff;
  color: rgb(59, 59, 59);
}

.links {
  height: 200px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.link {
  background: #fff;
  width: 100%;
  display: block;
  flex-basis: 100%;
  transition: 0.1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 40px;
  color: rgb(59, 59, 59);
}

.links:hover > .link_team {
  background: blue !important;
}

.link_blog {
  border-radius: 10px 10px 35px 35px;
  transition: 0.1s;
}

.link:hover {
  border-radius: 35px;
  color: #666dc2;
}

.p_links {
  display: none;
}

@media (max-width: 640px) {
  .f_container {
    /* margin: 10px; */
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
  }

  .r_links {
    display: none;
  }

  .p_links {
    display: grid;
    justify-content: initial;
    height: 160px;
  }

  .link {
    font-size: 28px;
    border-radius: 10px 10px 35px 35px;
  }
}

@import url(reset.css);

@font-face {
  font-family: "Cosmata";
  src: url("../font/Cosmata-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cosmata";
  src: url("../font/Cosmata-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cosmata Semi";
  src: url("Cosmata-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Cosmata";
}

body {
  background: #666dc2;
}

.bg-grr {
  background: #f3f4ff;
}

p {
  line-height: 160%;
  color: #3f3f3f;
}

a {
  font-weight: bold;
  font-size: 18px;
}

a span.line-span {
  position: relative;
  transition: 0.1s;
}

a span.link-span {
  position: absolute;
  z-index: 9999;
}

a span.line-span::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  background: #020202;
  border-radius: 10px;
  bottom: 0;
  left: 0;
}

span.arrow-span {
  color: #5fb47e;
}

a:hover span.line-span::before {
  background: #a7a7a7;
}

a.disable:hover {
  color: #a7a7a7;
  cursor: not-allowed;
}

a:hover span.arrow-span {
  padding-left: 3px;
  transition: 0.1s;
  color: #a7a7a7;
}

.team-img-parent > div {
  overflow: hidden;
  border-radius: 20px;
}

.team-img-parent > div:hover img {
  scale: 1.2;
  transition-delay: 1s;
}

.team-img-parent img {
  border-radius: 20px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  transition: 5s ease-in-out;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px !important;
  }
}

.menu {
  background: #fff;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.305);
  cursor: pointer;
  transition: 0.05s ease;
}

.menu:hover {
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.305);
}

.menu img {
  height: 70px;
  padding: 15px;
  margin: 0 auto;
}

.title {
  font-family: "Cosmata";
  font-weight: bold;
  font-size: 60px;
  color: #fff;
  transition: 0.1s;
  line-height: 120%;
}

.title-dark {
  color: #020202;
}

.title:hover {
  word-spacing: -1px;
  letter-spacing: -1px;
}

.title-border {
  border-top: 2px solid #a7a7a7;
}

.mini-title {
  letter-spacing: 0.1px;
  word-spacing: 2px;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.team-parent {
  margin-top: 40px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

.team-parent .team-img {
  border-radius: 10px;
  height: 370px;
  overflow: hidden;
}

.team-parent .team-img img {
  border-radius: 10px;
  transition: 0.1s ease;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.team-parent .team-name {
  font-size: 22px;
  font-weight: bold;
}

.team-parent .team-post {
  font-weight: 600;
  font-size: 13px;
  color: #505050;
}

.web-icon {
  display: block;
  position: absolute;
  top: 16px;
  left: -40px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: url(../img/web.svg) center center no-repeat #fff;
  background-size: 26px;
  box-shadow: 6px 8px 18px 0px #0000002e;
  transition: 0.1s;
  z-index: 99999;
}

.web-icon:hover {
  box-shadow: 6px 8px 18px 0px #00000051;
}

.team-parent:hover .team-img img {
  scale: 1.1;
}

.team-parent:hover .web-icon {
  left: 16px;
}

/*  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Space+Mono:wght@400;700&display=swap");

.hidden {
  display: none;
}

.f_container {
  background: linear-gradient(
    297deg,
    rgba(80, 72, 200, 1) 0%,
    rgba(102, 109, 194, 1) 53%
  );
  height: calc(100vh - 50px);
  width: calc(100vw - 50px);
  /* margin: 25px; */
  border-radius: 45px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.main {
  margin-bottom: 10px;
  height: calc(100% - 210px);
  border-radius: 35px 35px 0 0;
  padding: 20px;
  box-sizing: border-box;
  display: grid;
}

.logo img {
  height: 60px;
}

.logo {
  margin: 0 auto;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.content h2 {
  margin: 20px 0;
  font-size: 32px;
  font-family: "Space Mono", monospace;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: -1px;
}

.content .main_text {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.759);
  margin: 10px 0;
  line-height: 24px;
  text-align: justify;
}

.main_text::selection {
  background-color: #fff;
  color: rgb(59, 59, 59);
}

.links {
  height: 200px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.link {
  background: #fff;
  width: 100%;
  display: block;
  flex-basis: 100%;
  transition: 0.1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 40px;
  color: rgb(59, 59, 59);
}

.links:hover > .link_team {
  background: blue !important;
}

.link_blog {
  border-radius: 10px 10px 35px 35px;
  transition: 0.1s;
}

.link:hover {
  border-radius: 35px;
  color: #666dc2;
}

.p_links {
  display: none;
}

@media (max-width: 640px) {
  .f_container {
    /* margin: 10px; */
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
  }

  .r_links {
    display: none;
  }

  .p_links {
    display: grid;
    justify-content: initial;
    height: 160px;
  }

  .link {
    font-size: 28px;
    border-radius: 10px 10px 35px 35px;
  }
}

.header-img {
  width: 100%;
}

