website/_sass/base.scss

1879 lines
28 KiB
SCSS

@charset "utf-8";
@font-face {
font-family: 'Inter';
src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}
/**
* Style variables
*/
$base-font-family: 'Inter', monospace !default;
$base-font-size: 1.3rem !default;
$mobile-font-size: 1.125rem !default;
$base-line-height: 1.5 !default;
$container-width: 90% !default;
$container-max-width: 1280px !default;
/**
* Global
*/
html {
scroll-behavior: smooth;
}
body {
width: 100%;
background-color: var(--background-color);
margin: 0 auto;
padding: 0;
font-family: $base-font-family;
font-size: $base-font-size;
color: var(--text-color);
text-align: left;
line-height: $base-line-height !important;
}
h1 {
font-size: 120px !important;
line-height: 100px !important;
font-weight: 400 !important;
}
h2 {
font-size: 90px !important;
line-height: 80px !important;
width: 100% !important;
font-weight: 400 !important;
}
h3 {
font-size: 50px !important;
line-height: 50px !important;
width: 100% !important;
}
h4 {
font-size: 32px;
}
h5 {
font-weight: 400 !important;
font-size: 22px !important;
}
h6 {
font-weight: 400 !important;
font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0px;
margin-top: 0px;
margin-bottom: 12px;
font-weight: 400;
color: var(--header-color);
}
p {
font-size: $base-font-size;
}
p,
ul,
ol {
margin: 0px;
color: var(--text-color);
}
a {
color: var(--link-color);
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: var(--background-color);
background: var(--base-color);
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.center {
text-align: center;
margin: auto;
}
.gradient-text {
font-size: 48px;
font-weight: bold;
background: linear-gradient(100deg, white, #8a8d97);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-text-inverse {
font-size: 48px;
font-weight: bold;
background: linear-gradient(-100deg, white, #8a8d97);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
.hero-p {
max-width: 800px;
}
.hero-header {
height: 320px;
}
.capsule-header {
margin-top: 80px;
margin-bottom: 30px;
}
.contact-header {
height: 180px;
}
.card {
transition: border 0.3s ease-in-out;
background: var(--dark-grey);
border: 1px solid var(--mid-purple);
border-radius: 20px;
padding: 45px;
margin: 20px;
min-height: 490px;
max-width: 550px;
}
.card:hover {
border: 1px solid var(--light-purple);
}
@mixin capsule {
font-weight: 400;
font-size: 16px;
border-radius: 30px;
padding: 1px;
width: 130px;
margin: auto;
text-align: center;
}
.capsule {
color: var(--light-purple);
background: var(--dark-purple);
border: 1px solid var(--dark-purple);
@include capsule;
}
.capsule-grey {
color: white;
background: #262626;
border: 1px solid #262626;
@include capsule;
}
.capsule-yellow {
color: var(--background-color);
background: var(--dark-teal);
border: 1px solid var(--dark-teal);
filter: brightness(190%);
@include capsule;
}
.capsule-green {
color: var(--background-color);
background: var(--light-purple);
border: var(--light-purple);
@include capsule;
}
.capsule-teal {
color: var(--light-teal);
background: var(--dark-teal);
border: 1px solid var(--dark-teal);
@include capsule;
}
.capsule-transparent {
background: var(--light-grey);
color: var(--dark-grey);
border: 1px solid var(--light-grey);
margin: 0px 0px 0px 5px !important;
width: 100px !important;
filter: brightness(70%);
@include capsule;
}
.component-links {
display: flex;
flex-wrap: wrap;
}
.component-section {
display: flex;
justify-content: left;
}
.roadmap a:hover {
background: transparent;
}
.roadmap .text-well {
margin: auto;
}
.component-text {
line-height: 26px;
margin-right: 10px;
}
.roadmap-header {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.roadmap-header-capsule {
display: flex;
vertical-align: center;
margin-left: 20px;
}
.roadmap-title-container {
display: flex;
}
.roadmap-card:hover {
border: 1px solid var(--light-teal);
}
.roadmap-card-teal:hover {
border: 1px solid var(--light-teal) !important;
}
.roadmap-item-name {
color: white !important;
font-size: 40px !important;
font-weight: 600;
}
.roadmap-tagline-line {
font-size: 30px !important;
line-height: 2.2;
color: var(--light-grey) !important;
}
.roadmap-tagline {
font-size: 40px !important;
color: var(--light-grey) !important;
}
.roadmap p {
max-width: 700px;
}
.narrow-list > li > p {
margin-top: 0px;
}
.arrow-link {
display: inline-flex;
align-items: center;
color: #fff;
text-decoration: none;
padding: 8px 12px;
border-radius: 4px;
margin-left: 0px;
padding-left: 0px;
}
.arrow {
display: inline-block;
margin-left: 4px;
transition: transform 0.3s ease;
}
.blog-link:hover .arrow {
transform: translateX(5px);
background: none !important;
background-color: var(--base-color);
color: white !important;
}
.arrow-link:hover .arrow {
transform: translateX(5px);
background: none !important;
background-color: var(--base-color);
color: white !important;
}
.arrow-link:hover {
background: none !important;
background-color: var(--base-color);
color: white !important;
}
.roadmap .flex-container .flex-container-inner .text-well {
border: 1px solid grey;
padding: 40px;
max-width: 1000px;
min-height: 360px;
transition: transform 0.7s ease, background-color 0.3s ease;
}
.roadmap .flex-container .flex-container-inner .text-well:hover .learn-more {
color: #F048B5;
}
.learn-more {
font-weight: 600;
}
.roadmap .flex-container .flex-container-inner .text-well p {
margin-top: 0px;
margin-bottom: 0px;
}
.roadmap .flex-container .flex-container-inner .text-well h5 {
margin-top: 0px;
margin-bottom: 0px;
}
.roadmap .flex-container .flex-container-inner h3 {
margin-top: 0px;
margin-bottom: 0px;
}
.roadmap .flex-container {
margin-top: 50px;
margin-bottom: 50px;
}
.powered-by .card {
border: 1px solid var(--light-teal);
min-height: 360px;
padding: 35px;
background: var(--void-teal);
}
.powered-by img {
width: 150px;
}
.video-background {
left: 85%;
width: 200px !important;
}
.video-background-container {
position: absolute;
width: 100%;
height: 800px;
overflow: hidden;
top: 100px;
left: 0;
z-index: -1;
}
.gradient-overlay {
background: linear-gradient(to bottom, #0f0f0f 0%, rgba(15, 15, 15, 0) 25%, rgba(15, 15, 15, 0) 75%, #0f0f0f 100%), linear-gradient(to right, rgb(15, 15, 15) 30%, rgba(15, 15, 15, 0) 100%);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}
.video-background {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%);
z-index: -1;
object-fit: cover;
}
.video-content {
position: relative;
z-index: 1;
color: #fff;
padding: 2rem;
}
.powered-header {
height: 100px;
}
@media only screen and (max-device-width: 500px) {
* {
font-size: $mobile-font-size;
}
}
/**
* Layout
*/
.container {
width: $container-width;
max-width: $container-max-width;
margin-right: auto;
margin-left: auto;
}
p {
/*
word-wrap: break-word;
word-break: break-word;
white-space: pre-wrap;
*/
margin-top: 16px;
margin-bottom: 16px;
}
footer {
color: var(--light-grey);
border-top: 1px solid var(--light-grey);
padding: 40px 0px;
text-align: right;
margin-top: 80px;
font-size: 1.1rem;
}
.footer-link {
color: var(--light-grey);
display: inline-block;
text-decoration: none;
margin-left: 20px;
}
.footer-link:hover {
background: transparent;
color: white;
}
.footer-container {
display: flex;
justify-content: space-between
}
header {
padding: 24px;
margin-bottom: 24px;
border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
header p {
text-align: left;
margin: 0;
}
hr {
margin-top: 20px;
}
/**
* Navbar
*/
.menu {
max-width: 1280px;
margin: auto;
}
.menu-logo {
height: 48px;
}
#home-link:hover {
background: none;
text-decoration: none;
}
.header-page-links li:before {
content: ''
}
.header-page-links a {
color: var(--light-grey);
display: inline-block;
margin: 0px 4px;
font-size: 1.1rem;
text-decoration: none;
}
.header-page-links a:hover {
background-color: transparent;
color: white;
}
.left-menu {
display: flex;
align-items: center;
transition: transform 0.5s ease;
filter: brightness(0.8);
will-change: filter;
}
.left-menu:hover {
filter: brightness(1.0);
}
.left-menu img {
display: flex;
}
.right-menu {
width: 74%;
display: flex;
justify-content: flex-end;
align-items: center;
}
.menu-button-container {
display: none;
width: 50px;
height: 50px;
cursor: pointer;
flex-direction: column;
justify-content: center;
align-items: center;
}
#menu-toggle {
display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
display: block;
background-color: #fff;
position: absolute;
height: 4px;
width: 30px;
transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
border-radius: 2px;
}
.menu-button::before {
content: '';
margin-top: -8px;
}
.menu-button::after {
content: '';
margin-top: 8px;
}
#menu-toggle:checked+.menu-button-container .menu-button::before {
margin-top: 0px;
transform: rotate(405deg);
}
#menu-toggle:checked+.menu-button-container .menu-button {
background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked+.menu-button-container .menu-button::after {
margin-top: 0px;
transform: rotate(-405deg);
}
.menu-content {
position: absolute;
display: none;
background: var(--background-color);
text-align: right;
margin-top: 100px;
width: 100%;
z-index: 2;
}
.inner-menu-content {
border-bottom: 1px solid white;
margin-top: 50px;
}
.menu-content div {
margin: 30px;
}
/**
* Services Page
*/
.why-distrust {
height: 95px;
text-align: left;
}
/**
* Company Page
*/
.about-special h2 {
font-weight: 600 !important;
margin: 0px;
height: 340px;
}
.about-special {
padding-left: 0px;
margin-top: 80px;
}
.team .card {
border-radius: 0px;
padding: 20px;
min-height: 120px;
min-width: unset;
height: 165px;
border: 1px solid var(--mid-grey);
margin-left: 0px;
background: radial-gradient(circle, rgba(41, 41, 41, 0.6) 20%, #120F1A 100%);
box-shadow:
0px 4px 6px rgba(0, 0, 0, 0.5),
0px 10px 30px rgba(0, 0, 0, 0.3);
}
.team .card:hover {
border: 1px solid var(--mid-grey);
}
.team .title {
text-transform: unset;
}
.team p, .team a {
font-size: 15px;
margin-top: 0px;
margin-bottom: 0px;
color: var(--light-grey);
}
.team img {
height: 130px;
border: 1px solid teal;
}
.team .flex-container {
justify-content: flex-start;
}
.team h5 {
font-size: 20px !important;
text-transform: lowercase;
}
.team .flex-container-inner {
margin-bottom: 0px;
margin-right: 20px;
}
/**
* End-Company Page
*/
@media (max-width: 1020px) {
.right-menu {
width: 40px;
height: 40px;
}
.menu-button-container {
display: flex;
}
#menu-toggle~.menu li {
height: 0;
margin: 0;
padding: 0;
border: 0;
transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
#menu-toggle:checked~.menu li {
border: 1px solid #333;
height: 2.5em;
padding: 0.5em;
transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu>li {
display: flex;
justify-content: center;
margin: 0;
padding: 0.5em 0;
width: 100%;
color: white;
background-color: #222;
}
.menu>li:not(:last-child) {
border-bottom: 1px solid #444;
}
}
/**
* Buttons
*/
.button {
display: inline-block;
padding: 10px 20px 9px 20px;
border-radius: 30px;
margin-top: 10px;
color: var(--base-color);
background-color: var(--background-color);
border: 2px solid white;
text-decoration: none;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.button:hover {
/* invert */
background-color: var(--base-color);
color: var(--background-color);
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
/* important button */
@mixin mega {
border-radius: 30px;
font-weight: 400;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.mega-inverted.button {
border: 1px solid var(--mid-grey);
background: var(--mid-grey);
color: white;
@include mega;
}
.mega-inverted.button:hover {
transform: translateY(0px);
background: var(--purple);
color: var(--base-color);
}
.mega.button {
background-color: var(--dark-purple);
color: var(--base-color);
border: 2px solid var(--light-purple);
box-shadow: 0 0 18px rgba(42,106,255,0.6);
@include mega;
}
.mega.button:hover {
background: var(--purple);
color: var(--base-color);
border: 2px solid var(--purple);
}
.mega-teal.button {
background-color: var(--dark-teal);
color: var(--base-color);
border: 2px solid var(--light-teal);
box-shadow: 0 0 18px rgba(42,106,255,0.6);
@include mega;
}
.mega-teal.button:hover {
background: var(--mid-teal);
color: var(--base-color);
border: 2px solid var(--mid-teal);
}
.button-container {
padding: 30px 0px;
}
.contact-button {
margin-top: 15px;
cursor: pointer;
font-size: 19px;
width: 100%;
border-radius: 10px;
height: 60px;
background: var(--purple);
color: white;
border: 1px solid var(--light-purple);
}
.contact-button:hover {
box-shadow: 0 0 18px rgba(42,106,255,0.6);
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
/**
* Highlight/Markup
*/
::selection {
background: var(--selection-background);
color: var(--selection-text);
}
::-moz-selection {
background: var(--selection-background);
color: var(--selection-text);
}
/**
* Lists
*/
.right-menu>ul>li:before {
content: "" !important;
margin-right: 4px;
}
/**
* Header/Navigation
*/
.menu {
/* border-bottom: var(--border); */
display: flex;
justify-content: space-between;
align-items: center;
}
.menu ul {
padding-left: 0px;
list-style-type: none;
text-align: right;
}
.menu ul li {
display: inline;
margin-left: 10px;
}
/**
* Form
*/
input,
select,
textarea {
padding: 0;
margin: 0;
-webkit-appearance: none;
-webkit-border-radius: 0;
border: none;
}
input[type=text],
select,
textarea {
width: 100%;
resize: none;
background-color: white;
color: black;
caret-color: black;
}
input,
select,
textarea,
textarea::-webkit-input-placeholder {
text-indent: 0px;
}
::placeholder {
color: var(--placeholder-color);
opacity: 1;
}
:-ms-input-placeholder {
color: var(--placeholder-color);
}
::-ms-input-placeholder {
color: var(--placeholder-color);
}
input[type=submit] {
font-size: $base-font-size;
font-family: $base-font-family;
line-height: $base-line-height;
cursor: pointer;
color: var(--link-color);
background-color: var(--background-color);
}
input[type=submit]:hover {
color: var(--background-color);
background-color: var(--base-color);
}
.submit-policy {
max-width: 500px;
margin-top: 9px;
font-size: 0.8rem !important;
filter: brightness(80%);
}
*:focus {
outline: none;
}
textarea {
vertical-align: top;
}
/**
* Contact Form
*/
.required:after {
content: " (required)";
color: white;
}
.placeholder:after {
color: grey;
}
.form-container {
max-width: 700px;
margin: auto;
}
.form-container.card {
background: #222222;
border: 1px solid #222222;
padding-bottom: 25px;
}
.form-label {
display: block;
margin-bottom: 5px;
}
.form-input,
.form-select,
.form-textarea {
border: 1px solid grey;
border-radius: 10px;
font-size: 16px;
caret-color: white !important;
color: white !important;
background: var(--background-color) !important;
height: 60px;
width: 100%;
padding: 8px;
margin-bottom: 10px;
}
.form-textarea {
height: 130px !important;
}
.form-checkbox-container {
display: flex;
flex-direction: column;
}
/**
* Homepage
*/
.particles-wrapper {
background-color: #222;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: hidden;
}
.flex-container {
padding-left: 0px;
padding-right: 0px;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.flex-container-inner {
width: 100%;
}
section {
width: 100%;
margin-top: 100px;
margin-bottom:100px;
}
.mid-tall-section {
margin: 200px 0px;
}
.tall-section {
margin: 250px 0px;
}
.extra-spacing {
margin-top: 70px;
margin-bottom: 70px;
}
.companies {
display: flex;
justify-content: space-between;
align-items: center;
margin: 30px 0px;
}
.companies div {
width: 27%;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 120px;
border-bottom: 1px solid;
}
.companies a img {
height: 45px;
filter: grayscale(100%);
text-align: center;
}
.companies a:hover {
background-color: none;
background: none;
text-decoration: none;
}
.text-well {
max-width: 100%;
}
/**
* Code and syntax highlighting
*/
.lineno {
color: var(--code-color-1);
margin-right: 15px;
}
figure.highlight {
margin: 5px 0;
}
pre {
background-color: var(--background-color);
border: none;
padding: 0;
margin: 0;
overflow: auto;
font-size: $base-font-size;
color: var(--text-color);
line-height: 1.7 !important;
font-family: $base-font-family !important;
}
.highlight .hll {
background-color: var(--code-color-2);
}
.highlight .c {
color: var(--code-color-1);
font-style: italic
}
/* Comment */
.highlight .err {
color: var(--code-color-3);
background-color: var(--code-color-4);
}
/* Error */
.highlight .k {
color: var(--code-color-5);
}
/* Keyword */
.highlight .cm {
color: var(--code-color-1);
font-style: italic
}
/* Comment.Multiline */
.highlight .cp {
color: var(--code-color-6);
}
/* Comment.Preproc */
.highlight .c1 {
color: var(--code-color-1);
font-style: italic
}
/* Comment.Single */
.highlight .cs {
color: var(--code-color-5);
font-style: italic
}
/* Comment.Special */
.highlight .gd {
color: var(--code-color-7);
}
/* Generic.Deleted */
.highlight .ge {
font-style: italic
}
/* Generic.Emph */
.highlight .gr {
color: var(--code-color-7);
}
/* Generic.Error */
.highlight .gh {
color: var(--code-color-8);
font-weight: bold
}
/* Generic.Heading */
.highlight .gi {
color: var(--code-color-9);
}
/* Generic.Inserted */
.highlight .go {
color: var(--code-color-10);
}
/* Generic.Output */
.highlight .gp {
color: var(--code-color-11);
}
/* Generic.Prompt */
.highlight .gs {
font-weight: bold
}
/* Generic.Strong */
.highlight .gu {
color: var(--code-color-12);
font-weight: bold
}
/* Generic.Subheading */
.highlight .gt {
color: var(--code-color-7);
}
/* Generic.Traceback */
.highlight .kc {
color: var(--code-color-5);
}
/* Keyword.Constant */
.highlight .kd {
color: var(--code-color-5);
}
/* Keyword.Declaration */
.highlight .kn {
color: var(--code-color-5);
}
/* Keyword.Namespace */
.highlight .kp {
color: var(--code-color-5);
}
/* Keyword.Pseudo */
.highlight .kr {
color: var(--code-color-5);
}
/* Keyword.Reserved */
.highlight .kt {
color: var(--code-color-13);
}
/* Keyword.Type */
.highlight .m {
color: var(--code-color-14);
}
/* Literal.Number */
.highlight .s {
color: var(--code-color-15);
}
/* Literal.String */
.highlight .na {
color: var(--code-color-16);
}
/* Name.Attribute */
.highlight .nb {
color: var(--code-color-13);
}
/* Name.Builtin */
.highlight .nc {
color: var(--code-color-9);
text-decoration: underline
}
/* Name.Class */
.highlight .no {
color: var(--code-color-7);
}
/* Name.Constant */
.highlight .nd {
color: var(--code-color-10);
}
/* Name.Decorator */
.highlight .ni {
color: var(--code-color-17);
font-weight: bold
}
/* Name.Entity */
.highlight .nf {
color: var(--code-color-9);
}
/* Name.Function */
.highlight .nn {
color: var(--code-color-13);
text-decoration: underline
}
/* Name.Namespace */
.highlight .nt {
color: var(--code-color-16);
font-weight: bold
}
/* Name.Tag */
.highlight .nv {
color: var(--code-color-7);
}
/* Name.Variable */
.highlight .ow {
color: var(--code-color-5);
}
/* Operator.Word */
.highlight .w {
color: var(--code-color-18);
}
/* Text.Whitespace */
.highlight .mf {
color: var(--code-color-14);
}
/* Literal.Number.Float */
.highlight .mh {
color: var(--code-color-14);
}
/* Literal.Number.Hex */
.highlight .mi {
color: var(--code-color-14);
}
/* Literal.Number.Integer */
.highlight .mo {
color: var(--code-color-14);
}
/* Literal.Number.Oct */
.highlight .sb {
color: var(--code-color-15);
}
/* Literal.String.Backtick */
.highlight .sc {
color: var(--code-color-15);
}
/* Literal.String.Char */
.highlight .sd {
color: var(--code-color-15);
}
/* Literal.String.Doc */
.highlight .s2 {
color: var(--code-color-15);
}
/* Literal.String.Double */
.highlight .se {
color: var(--code-color-15);
}
/* Literal.String.Escape */
.highlight .sh {
color: var(--code-color-15);
}
/* Literal.String.Heredoc */
.highlight .si {
color: var(--code-color-15);
}
/* Literal.String.Interpol */
.highlight .sx {
color: var(--code-color-15);
}
/* Literal.String.Other */
.highlight .sr {
color: var(--code-color-14);
}
/* Literal.String.Regex */
.highlight .s1 {
color: var(--code-color-15);
}
/* Literal.String.Single */
.highlight .ss {
color: var(--code-color-5);
}
/* Literal.String.Symbol */
.highlight .bp {
color: var(--code-color-13);
}
/* Name.Builtin.Pseudo */
.highlight .vc {
color: var(--code-color-7);
}
/* Name.Variable.Class */
.highlight .vg {
color: var(--code-color-7);
}
/* Name.Variable.Global */
.highlight .vi {
color: var(--code-color-7);
}
/* Name.Variable.Instance */
.highlight .il {
color: var(--code-color-14);
}
/* Literal.Number.Integer.Long */
.hide {
display: none;
width: 100%;
}
.show {
display: inline-block;
}
/**
* Companies Carousel
*/
.logo-section {
width: 100%;
overflow: hidden;
padding: 20px 0;
filter: brightness(50%);
mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
-webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}
.logo-slider {
display: flex;
align-items: center;
flex-wrap: nowrap;
transform: translateX(0);
}
.logo-slider img {
height: 50px;
margin-right: 80px;
filter: grayscale(100%);
opacity: 0.8;
transition: opacity 0.3s;
}
.logo-slider img:hover {
opacity: 1;
}
/**
* Carousel
*/
.carousel-container {
padding-left: 80px;
}
#carousel {
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
height: 320px;
padding-left: 100px;
position: relative;
}
.carousel-item {
display: flex;
justify-content: center;
align-items: start;
max-width: 400px;
height: 80px;
width: 100%;
font-size: 16px;
opacity: 0.5;
margin: 5px 0;
position: absolute;
left: 0;
right: 0;
transition: transform 1s ease, font-size 1s ease, opacity 1s ease;
transform-origin: center;
visibility: hidden;
overflow: hidden;
}
.carousel-link {
text-align: left;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.2;
max-height: 2.4em;
width: 100%;
margin: 0 10px;
white-space: normal;
}
.carousel-item.active {
transform: translateY(0) scale(1.2);
font-size: 20px;
opacity: 1;
visibility: visible;
}
.carousel-title {
font-weight: 400;
font-size: 22px;
color: var(--light-grey);
}
/** end carousel */
/**
* Blog
*/
.blog {
margin: auto;
max-width: 700px;
}
.post {
max-width: 700px;
margin: 100px 0px;
}
.post img {
max-width: 100%;
}
#lp-post-img {
max-width: 100%;
}
#lp-post-img {
max-width: 100%;
}
.entry {
font-size: 1.2rem;
}
.date h4 {
font-size: 1rem !important;
}
#blog-header {
margin: 80px 0px;
}
.blog-header-title {
display: inline-block;
font-size: 3.2rem;
text-align: center;
width: 100%;
margin-top: 80px;
}
.blog-header-subtitle {
text-align: center;
font-size: 1.5rem;
color: var(--light-grey);
}
.blog h1 {
font-size: 2.2rem !important;
font-weight: 600 !important;
line-height: 2.2rem !important;
}
.blog h2 {
font-size: 1.8rem !important;
}
.blog h3 {
font-size: 1.6rem !important;
}
.blog h4 {
font-size: 1.4rem !important;
}
.blog h5 {
font-size: 1.2rem !important;
}
.blog hr {
margin: 80px 0px;
}
.blog a {
color: var(--light-teal);
}
.blog a:hover {
text-decoration: underline;
background: var(--background-color);
}
.blog-details {
display: flex;
flex-direction: left;
font-size: 0.9rem;
margin-bottom: 10px;
}
.blog-details-date {
background: var(--light-grey);
color: var(--background-color);
border-radius: 5px;
padding: 2px 10px;
}
.blog-details-read-time {
padding: 2px 10px;
margin-left: 15px;
color: white;
}
/** end blog */
*,
*::before,
*::after {
box-sizing: border-box;
}
.wrapper {
background: linear-gradient(60deg, #420285, #08BDBD);
height: 100%;
width: 100%;
display: flex;
justify-content: center;
}
.title {
text-transform: uppercase;
font-size: 20px;
margin-top: 10px;
}
.who-we-are {
margin-left: 70px;
}
/**
* media queries
*/
@media (max-width: 1380px) {
.vertical-line-container {
display: none;
}
.roadmap-tagline {
font-size: 30px !important;
line-height: 30px;
margin-bottom: 15px;
}
}
@media (max-width: 1090px) {
.contact-header {
height: 260px;
}
}
@media (max-width: 1150px) {
.landing-header {
height: 400px;
}
.roadmap-title-container {
flex-direction: column;
}
.roadmap-tagline-line {
display: none;
}
.component-section {
flex-direction: column;
}
.component-links {
max-width: 100%;
}
}
@media (max-width: 1117px) {
.services-header {
height: 420px;
}
}
@media (max-width: 1020px) {
.flex-container-inner {
width: 100% !important;
margin: 0;
margin-bottom: 50px;
}
.flex-container {
}
.hide {
display: inline-block;
}
.show {
display: none;
}
.who-we-are-section {
flex-direction: column-reverse;
}
.services-header {
height: 250px;
}
.team .flex-container-inner {
margin-bottom: 30px;
}
h1 {
font-size: 80px !important;
line-height: 80px !important;
}
h2 {
font-size: 60px !important;
line-height: 60px !important;
}
}
@media (max-width: 742px) {
.contact-header {
height: 340px;
}
}
@media (max-width: 600px) {
.flex-container {
flex-direction: column;
}
.form-container.card {
padding: 20px 15px;
}
.who-we-are-section {
flex-direction: column-reverse;
}
section {
margin-top: 80px;
margin-bottom: 80px;
}
.companies {
flex-wrap: wrap;
}
.companies div {
width: 100%;
height: 170px;
border-bottom: none;
}
.carousel-container {
padding-top: 50px;
padding-left: 10px;
}
.hero-header {
height: 190px;
}
.landing-header {
height: 90px !important;
}
.contact-header {
margin-top: 0px;
height: 130px;
}
.capsule-header {
height: unset;
}
.footer-link {
margin-bottom: 20px;
min-width: 200px;
}
.tall-section {
margin: 100px 0px;
}
.mid-tall-section {
margin: 20px 0px;
}
.about-special {
margin-top: 0px;
}
p {
font-size: 1.1rem !important;
}
h1 {
font-size: 45px !important;
line-height: 45px !important;
}
h2 {
font-size: 40px !important;
line-height: 40px !important;
}
h3 {
font-size: 30px !important;
line-height: 30px !important;
}
.roadmap-header {
flex-direction: column;
}
.roadmap-header-capsule {
margin: 0;
}
.capsule-yellow, .capsule-green, .capsule-grey {
margin: 0px;
}
.capsule-transparent {
margin: 5px 5px 0px 0px !important;
}
.hero-p {
font-size: 1.1rem;
}
.landing-page-header {
margin-top: 20vh;
margin-bottom: 20vh;
}
.video-background {
left: 50% !important;
}
.gradient-overlay {
background: linear-gradient(to bottom, #0f0f0f 0%, rgba(15, 15, 15, 0) 25%, rgba(15, 15, 15, 0) 75%, #0f0f0f 100%), linear-gradient(to right, rgb(15, 15, 15) 0%, rgba(15, 15, 15, 0) 100%)
}
.carousel-title {
font-size: 1rem;
}
.footer-container {
flex-direction: column-reverse;
}
.footer-link {
font-size: 1rem !important;
margin-bottom: 10px;
}
.powered-header {
height: 50px;
}
.quote {
font-size: 1.5rem;
line-height: 1.5rem;
}
/**
* Services Page
*/
.why-distrust {
height: 45px;
}
/**
* End Services Page
*/
/**
* Roadmap Page
*/
/**
* End Roadmap Page
*/
}