@import '/global/resources/css/global-bundle.css?20221207165141';
/* header.css */
#topnav {
    
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--cycle-black));
    z-index: 100;
}

header.scrolled {
    background-color: rgba(var(--cycle-black), .9);
    box-shadow: 0 0 2px rgba(var(--cycle-black), .6);
    backdrop-filter: blur(4px);
}

header > div.container {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.cycle-logo {
    max-width: 15rem;
    height: inherit;
    padding: .5rem 0;
}

div.cycle-logo img {
    max-width: 100%;
    max-height: 100%;
}


/* nav.css */
nav {
    display: flex;
    height: inherit;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}

nav a, nav button {
    padding: 0 1rem;
    display: flex;
    align-self: stretch;
    align-items: center;
    color: rgb(var(--cycle-accent-white));
}

nav a:hover, nav button:hover {
    transition: color 0.2s ease-in-out;
    color: rgb(var(--cycle-blue));
}

nav#primary {
    max-width: 35rem;
}

nav#login {
    max-width: 15rem;
    justify-content: flex-end;
}

nav#menu {
    justify-content: flex-end;
    font-size: 2rem;
    max-width: 10rem;
}

nav#menu a:hover {
    color: rgb(var(--cycle-blue));
}

#menu-modal .links a {
    display: block;
    padding: 1rem 4rem;
    text-align: center;
    color: rgb(var(--cycle-white));
    border: 1px solid rgb(var(--cycle-blue));
    margin: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: rgb(var(--cycle-accent-black));
    border-radius: var(--cycle-border-radius);
}

#menu-modal .links a:hover {
    background-color: rgb(var(--cycle-blue));
    color: rgb(var(--cycle-black))
}

/* cta.css */

/* footer.css */
footer .links {
    display: flex;
    height: inherit;
    flex-grow: 1;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
}

footer .links div {
    width: 100%
}

footer .links a {
    padding: 0.5rem 1rem;
    display: flex;
    align-self: stretch;
    align-items: center;
    color: rgb(var(--cycle-accent-white));
}

footer .links a:hover {
    transition: color 0.2s ease-in-out;
    color: rgb(var(--cycle-blue));
}

#scroll-top {
    margin: 1rem;
    font-size: 1.5rem;
    position: fixed;
    bottom: 0;
    /* right: 0; */
    left: 0;
    background-color: rgb(var(--cycle-black));
    border: 1px solid rgb(var(--cycle-blue));
    border-radius: var(--cycle-border-radius);
    color: rgb(var(--cycle-blue));
}

#scroll-top a {
    display: block;
    padding: 0.75rem;
}
/* hero.css */
#hero {
    background-image: linear-gradient(rgba(var(--cycle-black),1), rgba(var(--cycle-black),0)), url('/global/resources/images/tech_tools_bg-accet-black.svg');
    padding: 0 1rem 8rem;
    background-size: cover;
    text-align: center;
}

.announcement {
    display: inline-block;
    margin: 2rem;
    border: 1px solid rgb(var(--cycle-blue));
    padding: 0.5rem;
    border-radius: var(--cycle-border-radius);
}

#hero div.container {
    display: flex;
    align-content: center;
    align-items: left;
    flex-direction: row;
}

#hero div#intro {
    animation: fadein 0.5s;
    text-align: left;
}

#hero div.title {
    padding: 5rem 0 0;
}

#hero div.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--cycle-accent-white));
    padding: 1.5rem 0 3rem;
}

#hero .cta-button {
    font-weight: 600;
    font-size: 1.2rem;
    padding: .75rem 1rem;
}

#hero .diagram {
    text-align: center;
    padding-bottom: 2rem;
}

#hero .diagram img {
    max-width: 25rem;
    width: 100%;
}
/* index.css */
#intro-manifesto {
    background-color: rgb(var(--cycle-accent-black));
    padding: 2rem;
    border-radius: var(--cycle-border-radius);
    font-size: 1.2rem;
    margin: -8rem auto 4rem;
    width: fit-content;
}

#intro-manifesto > i {
    font-size: 4rem;
    vertical-align: middle;
    margin-right: 1rem;
}

#intro-manifesto #itro-manifesto-reason {
    display: inline-block;
    border-bottom: 2px dotted rgb(var(--cycle-blue));
}

@media screen and (min-width: 992px){
    .responsiveheadline {
        font-size: 3.8rem;
    }
}
/* rotator.css */
@-moz-keyframes 
fade-it { 0% {
opacity:0
}
100% {
opacity:1
}
}
@-webkit-keyframes 
fade-it { 0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes 
fade-it { 0% {
opacity:0
}
100% {
opacity:1
}
}
.js-fade-in-verb {
  animation-name: fade-it;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  -webkit-animation-name: fade-it;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards
}
.verb.js-block { display: inline-block }
.verb.js-hide {
  display: none;
  opacity: 0
}
.verb {
  font-weight: normal;
  display: inline-block;
  visibility: visible;
  border-bottom: 2px dotted rgb(var(--cycle-blue));
}