2022-09-20 12:58:56 +00:00
|
|
|
@use 'community';
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
main {
|
|
|
|
|
margin-top: 7rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
overflow-x: clip;
|
2022-09-20 12:58:56 +00:00
|
|
|
background-color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#menu{
|
|
|
|
|
box-shadow: inset 0 -5rem 5rem -2rem rgb(0 0 0 / 40%);
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
2022-09-19 21:19:06 +00:00
|
|
|
.header__logo {
|
2022-09-18 15:37:00 +00:00
|
|
|
opacity: 1 !important;
|
|
|
|
|
filter: blur(0px) !important;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
section {
|
|
|
|
|
--width: 42ch;
|
|
|
|
|
--side-padding: 3rem;
|
|
|
|
|
font-family: "Montserrat";
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
width: var(--width);
|
|
|
|
|
padding: 7rem var(--side-padding);
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
&:nth-of-type(2n + 3) {
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: calc(-1 * ((100vw - var(--width)) / 2) + var(--side-padding));
|
|
|
|
|
width: 100vw;
|
|
|
|
|
background-color: #212121;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.section__image {
|
2022-09-02 13:59:11 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2022-09-19 21:19:06 +00:00
|
|
|
margin: 2rem 0 4rem 0;
|
2022-09-14 16:05:58 +00:00
|
|
|
position: relative;
|
|
|
|
|
img {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
.img-shadow {
|
|
|
|
|
top: 3rem;
|
|
|
|
|
filter: blur(1rem) brightness(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
//align-items: center;
|
|
|
|
|
//outline: 1px solid orange;
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
section#hero {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
gap: 5rem;
|
|
|
|
|
width: calc(100vw - (2 * var(--side-padding)));
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1245px) {
|
2022-09-19 21:19:06 +00:00
|
|
|
section#hero {
|
|
|
|
|
flex-direction: column;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
2022-09-19 21:19:06 +00:00
|
|
|
}
|
2022-09-14 16:05:58 +00:00
|
|
|
|
|
|
|
|
section#virtues {
|
|
|
|
|
.section__image img {
|
|
|
|
|
width: 75%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section__double-image {
|
|
|
|
|
position: relative;
|
2022-09-19 21:19:06 +00:00
|
|
|
.section__image {
|
2022-09-14 16:05:58 +00:00
|
|
|
position: absolute;
|
2022-09-19 21:19:06 +00:00
|
|
|
top: -140%;
|
|
|
|
|
width: 100%;
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
2022-09-19 21:19:06 +00:00
|
|
|
.section__image--left {
|
|
|
|
|
left: -105%;
|
2022-09-14 16:05:58 +00:00
|
|
|
align-items: flex-end;
|
|
|
|
|
}
|
2022-09-19 21:19:06 +00:00
|
|
|
.section__image--right {
|
|
|
|
|
right: -105%;
|
2022-09-14 16:05:58 +00:00
|
|
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-09-20 12:58:56 +00:00
|
|
|
#logo{
|
|
|
|
|
margin-bottom: -6rem;
|
|
|
|
|
h1 { font-size: 5rem; }
|
|
|
|
|
}
|
2022-09-14 16:05:58 +00:00
|
|
|
|
|
|
|
|
#hero-image img {
|
|
|
|
|
margin-top: 0;
|
2022-09-20 12:58:56 +00:00
|
|
|
width: 25rem;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero--about{
|
|
|
|
|
#hero-image img {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
width: 28rem;
|
|
|
|
|
}
|
|
|
|
|
#logo{
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
h1 { font-size: 4.2rem; }
|
|
|
|
|
}
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
2022-09-14 16:05:58 +00:00
|
|
|
font-family: var(--f-hero);
|
|
|
|
|
font-size: 4.2rem;
|
|
|
|
|
width: 110%;
|
|
|
|
|
line-height: 1;
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
2022-09-14 16:05:58 +00:00
|
|
|
font-family: var(--f-hero);
|
|
|
|
|
font-size: 3.7rem;
|
|
|
|
|
text-align: center;
|
2022-09-20 12:58:56 +00:00
|
|
|
line-height: 1;
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section#blurb h2 {
|
2022-09-14 16:05:58 +00:00
|
|
|
font-size: 2.5rem;
|
|
|
|
|
color: var(--c-text-accent);
|
|
|
|
|
width: 110%;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
text-align: left;
|
|
|
|
|
margin-bottom: 2rem;
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3 {
|
2022-09-14 16:05:58 +00:00
|
|
|
font-family: var(--f-hero);
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
width: 112%;
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h4 {
|
2022-09-14 16:05:58 +00:00
|
|
|
font-weight: 800;
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
h3,
|
|
|
|
|
h4 {
|
|
|
|
|
color: var(--c-text-accent);
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
ul#sub-menu {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 33rem;
|
|
|
|
|
li a {
|
|
|
|
|
font-family: var(--f-hero);
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
color: var(--c-text-primary);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
transition: var(--t-simple);
|
|
|
|
|
&:hover {
|
|
|
|
|
color: var(--c-text-accent);
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
2022-09-14 16:05:58 +00:00
|
|
|
}
|
2022-09-02 13:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
p {
|
|
|
|
|
font-family: "Montserrat";
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
line-height: 1.9rem;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
margin-bottom: 2.5rem;
|
2022-09-02 13:59:11 +00:00
|
|
|
|
2022-09-14 16:05:58 +00:00
|
|
|
strong {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-09-19 21:19:06 +00:00
|
|
|
|
|
|
|
|
/* about */
|
|
|
|
|
|
2022-09-20 12:58:56 +00:00
|
|
|
section#origin{
|
|
|
|
|
.section__image img{
|
|
|
|
|
transform: rotate(-3deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-19 21:19:06 +00:00
|
|
|
.members {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
.member {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
|
|
|
|
.member__avatar {
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
width: 10rem;
|
|
|
|
|
height: 10rem;
|
2022-09-20 12:58:56 +00:00
|
|
|
box-shadow: 0 3rem 2rem 0rem rgb(0 0 0 / 40%);
|
2022-09-19 21:19:06 +00:00
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
font-size: .8rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section#jobs {
|
|
|
|
|
p{
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
.job {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
ul, ol {
|
|
|
|
|
display: block;
|
|
|
|
|
list-style: disc outside none;
|
|
|
|
|
margin: 1em 0;
|
|
|
|
|
padding: 0 0 0 2rem;
|
|
|
|
|
}
|
|
|
|
|
ol {
|
|
|
|
|
list-style-type: decimal;
|
|
|
|
|
}
|
|
|
|
|
li {
|
|
|
|
|
display: list-item;
|
|
|
|
|
list-style: disc;
|
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
|
&:last-child{
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ul ul, ol ul {
|
|
|
|
|
list-style-type: circle;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
ol ol, ul ol {
|
|
|
|
|
list-style-type: lower-latin;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
}
|
2022-09-20 12:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section#news{
|
|
|
|
|
ul{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 4rem;
|
|
|
|
|
}
|
|
|
|
|
li a{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: .5rem;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
outline: 1px solid rgb(255 255 255 / 0%);
|
|
|
|
|
outline-offset: .5rem;
|
|
|
|
|
transition: var(--t-simple);
|
|
|
|
|
&:hover{
|
|
|
|
|
outline: 1px solid rgb(255 255 255 / 100%);
|
|
|
|
|
outline-offset: 2rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
h3{
|
|
|
|
|
text-transform: unset;
|
|
|
|
|
color: var(--c-text-primary);
|
|
|
|
|
}
|
|
|
|
|
.creator{
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
background-color: var(--c-text-accent);
|
|
|
|
|
color: var(--c-text-primary);
|
|
|
|
|
padding: .2em .5em;
|
|
|
|
|
font-size: .8rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
opacity: .6;
|
|
|
|
|
}
|
|
|
|
|
.twitter-text{
|
|
|
|
|
color: var(--c-text-primary);
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2022-09-19 21:19:06 +00:00
|
|
|
}
|