Files
2026-05-18 11:46:02 +02:00

2120 lines
42 KiB
SCSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@charset "UTF-8";
@media (min-width: 1200px) {
.navbar-nav {
--bs-navbar-nav-link-padding-x: 1rem;
}
}
.embed-responsive {
position: relative;
display: block;
width: 100%;
padding: 0;
overflow: hidden;
}
.embed-responsive::before {
display: block;
content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.embed-responsive-21by9::before {
padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
padding-top: 56.25%;
}
.embed-responsive-4by3::before {
padding-top: 75%;
}
.embed-responsive-1by1::before {
padding-top: 100%;
}
/* purgecss start ignore */
.btn {
display: -webkit-inline-box;
display: inline-flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
border-radius: 0;
white-space: nowrap;
line-height: 1;
font-weight: 700;
font-size: 14px;
padding: 14px 15px;
}
.btn [class^="icon-"] {
font-size: 16px;
margin-right: 9px;
}
.btn [class^="icon-"]::before {
margin-left: 0;
margin-right: 0;
}
.btn [class^="icon-arrow-right"] {
margin-left: 6px;
margin-right: 0;
}
.btn [class^="icon-arrow-right"]::before {
margin-left: 0;
margin-right: 0;
}
/* purgecss stop ignore */
.btn-lg {
line-height: 1.91;
min-width: 140px;
}
.btn-primary {
position: relative;
color: #fff;
background-color: #000;
border-color: #000;
will-change: border-color, color, background-color;
-webkit-transition: border-color, color, background-color;
transition: border-color, color, background-color;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.btn-primary:hover {
color: #000;
background-color: transparent;
border-color: #000;
}
.btn-primary.disabled,
.btn-primary.focus,
.btn-primary:disabled,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #000;
border-color: #000;
}
.btn-frameless {
position: relative;
color: #000;
background-color: transparent;
border-color: transparent;
will-change: border-color, background-color, border-color;
-webkit-transition: border-color, background-color, border-color;
transition: border-color, background-color, border-color;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.btn-frameless.disabled,
.btn-frameless.focus,
.btn-frameless:disabled,
.btn-frameless:focus,
.btn-frameless:hover,
.btn-frameless:not(:disabled):not(.disabled).active,
.btn-frameless:not(:disabled):not(.disabled):active,
.show > .btn-frameless.dropdown-toggle {
background-color: transparent;
border-color: #000;
color: #000;
}
.btn-light {
position: relative;
font-size: 16px;
color: #000;
font-weight: 600;
background-color: #fff;
background-position: 0 50%;
background-size: 100% 100%;
border-color: #fff;
will-change: border-color, color, background-color;
-webkit-transition: border-color, color, background-color;
transition: border-color, color, background-color;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.btn-light:hover {
color: #fff;
background-color: transparent;
border-color: #fff;
}
.btn-light.focus,
.btn-light:focus {
color: #000;
background-color: #fff;
border-color: #fff;
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
color: #000;
background-color: #000;
border-color: #000;
}
.btn-light.disabled::before,
.btn-light:disabled::before {
opacity: 0.3;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
color: #000;
background-color: #fff;
border-color: #fff;
}
.btn-light:not(:disabled):not(.disabled):active:focus .btn-light:not(:disabled):not(.disabled).active:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-rounded {
border-radius: 100px;
}
.btn.is-loading {
position: relative;
overflow: hidden;
pointer-events: none;
padding-right: 35px;
}
.btn.is-loading::after {
content: "";
display: block;
position: absolute;
bottom: 0;
right: 100%;
height: 3px;
-webkit-animation-name: button-loading;
animation-name: button-loading;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
margin-right: 10px;
width: 60px;
border-radius: 100%;
box-shadow: 0 0 30px 1px #004aff;
background-image: -webkit-gradient(
linear,
left top,
right top,
color-stop(0, rgba(255, 255, 255, 0)),
color-stop(10%, rgba(255, 255, 255, 0)),
color-stop(35%, rgba(255, 255, 255, 0.33)),
color-stop(50%, rgba(255, 255, 255, 0.5)),
color-stop(85%, #fff),
to(rgba(255, 255, 255, 0))
);
background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.33) 35%, rgba(255, 255, 255, 0.5) 50%, #fff 85%, rgba(255, 255, 255, 0) 100%);
}
@-webkit-keyframes button-loading {
0% {
right: 100%;
}
100% {
right: -100%;
}
}
@keyframes button-loading {
0% {
right: 100%;
}
100% {
right: -100%;
}
}
.btn.is-loading:disabled {
opacity: 1;
color: rgba(0, 74, 255, 0.5);
}
.btn.is-loading:disabled > * {
opacity: 0.5;
}
[class^="icon-"] {
font-size: 19px;
}
.contact {
padding: 60px 30px;
}
@media (min-width: 768px) {
.contact {
padding: 100px 80px;
}
}
.contact__info,
.experience + .experience {
padding-top: 50px;
}
.contact__info h3 {
margin-bottom: 0;
font-size: 16px;
font-weight: 300;
line-height: 2;
color: #333;
}
.contact__info span {
font-size: 14px;
font-weight: 700;
line-height: normal;
color: #000;
}
.contact__info span + h3 {
margin-top: 20px;
}
@media (min-width: 992px) {
.contact__info {
padding: 0 70px;
}
.contact__info span + h3 {
margin-top: 40px;
}
}
input.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
textarea.form-control {
padding: 10px 0;
width: 100%;
font-size: 16px;
font-weight: 300;
line-height: 2;
color: #333;
border: none;
border-bottom: 1px solid #dbe0e4;
border-radius: 0;
}
input[type="text"]:focus, input[type="text"]:active,
input[type="email"]:focus, input[type="email"]:active,
textarea:focus, textarea:active {
border-bottom: 1px solid black;
}
.education__date,
.experience__date {
line-height: 1.57;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
color: #333;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
color: #333;
}
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder {
color: #333;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder {
color: #333;
}
.rad-subscription-group {
margin-top: 30px;
margin-left: auto;
margin-right: auto;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
align-items: center;
padding: 6px;
max-width: 462px;
height: 56px;
border: 1px solid #fff;
border-radius: 56px;
}
.rad-subscription-group form {
-webkit-box-flex: 1;
flex: 1;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
align-items: center;
}
.rad-subscription-group #rad-subscription-fail,
.rad-subscription-group #rad-subscription-success {
-webkit-box-flex: 1;
flex: 1;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.rad-subscription-group #rad-subscription-fail p,
.rad-subscription-group #rad-subscription-success p {
color: #fff;
margin-bottom: 0;
width: 100%;
}
.rad-subscription-group input[type="email"] {
padding: 0 12px;
background-color: transparent;
border: none;
border-radius: 56px;
color: #fff;
}
.rad-subscription-group:has(input[type="email"]:focus),
.rad-subscription-group:has(input[type="email"]:active) {
border: 2px solid rgba(233, 62, 52, 0.5);
}
.rad-subscription-group input[type="email"]::-webkit-input-placeholder,
.rad-subscription-group input[type="email"]::-moz-placeholder,
.rad-subscription-group input[type="email"]::-ms-input-placeholder,
.rad-subscription-group input[type="email"]::placeholder {
color: #fff;
}
.rad-subscription-group button {
white-space: nowrap;
}
.social-links-group a:not(:last-child) {
margin-right: 15px;
}
.education {
position: relative;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: start;
align-items: flex-start;
min-height: 131px;
}
.education::before {
content: "";
position: absolute;
left: 90px;
top: 0;
width: 75px;
height: 100%;
z-index: 1;
background-color: #edf1f4;
-webkit-transform: skew(-13deg);
transform: skew(-13deg);
}
.education__date {
position: relative;
font-size: 14px;
font-weight: 300;
color: #333;
z-index: 2;
}
.education__title {
position: relative;
font-size: 24px;
font-weight: 600;
z-index: 2;
}
.education__degree,
.experience__date {
font-size: 14px;
font-weight: 300;
color: #333;
z-index: 2;
position: relative;
}
.about__profile-picture {
-webkit-box-flex: 0;
flex: 0 0 calc(100% + 80px);
max-width: calc(100% + 80px);
width: calc(100% + 80px);
margin-left: -40px;
margin-right: -40px;
margin-top: 40px;
}
.about__profile-picture img {
min-width: 200px;
min-height: 200px;
}
html,
html body {
min-height: 100%;
}
@media (min-width: 768px) {
.about__profile-picture {
margin-top: 0;
-webkit-box-flex: 0;
flex: 0 0 50%;
max-width: 50%;
width: 50%;
margin-left: 0;
margin-right: 0;
}
}
.clients {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
margin-bottom: -30px;
margin-left: -20px;
}
@media (min-width: 768px) {
.clients {
margin-left: -50px;
}
}
@media (min-width: 1200px) {
.clients {
-webkit-box-pack: justify;
justify-content: space-between;
}
}
.clients__item {
opacity: 0.5;
margin-bottom: 30px;
margin-left: 20px;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
}
.clients__item:hover {
opacity: 1;
}
.testimonial .icon-quote-left {
display: block;
margin-bottom: 16px;
}
@media (min-width: 768px) {
.clients__item {
margin-left: 50px;
}
.testimonial .icon-quote-left {
margin-bottom: 24px;
}
.img-clip-left-backward {
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
}
}
.testimonial__author {
display: -webkit-box;
display: flex;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
}
.testimonial__author-info,
html body {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
}
.testimonial__author-image {
margin-right: 16px;
width: 52px;
height: 52px;
border-radius: 100%;
}
.testimonial__author-info {
display: flex;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: start;
align-items: flex-start;
}
.testimonial__author-info h3 {
font-size: 16px;
margin-bottom: 0;
}
.testimonial__author-info span {
font-size: 14px;
font-weight: 700;
color: #AE1B13;
}
html {
height: 100%;
overflow-x: hidden;
}
html body {
display: flex;
flex-direction: column;
overflow: hidden;
color: #000;
font-family: Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-family: Helvetica;
letter-spacing: 0.3px;
word-spacing: 0px;
visibility: visible;
font-weight: 400;
}
html body ::-moz-selection {
background-color: #AE1B13;
color: #fff;
}
html body ::selection {
background-color: #AE1B13;
color: #fff;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
outline: 0;
}
.section {
position: relative;
padding-top: 60px;
padding-bottom: 60px;
}
.section--border-bottom::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
width: 100%;
height: 1px;
max-width: 1170px;
background-color: #dbe0e4;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.section .row.row--padded {
margin-top: 32px;
margin-bottom: 60px;
}
@media (min-width: 1200px) {
.section div[class*="col-"].rad-col-text:first-child {
max-width: 500px;
margin-right: auto;
}
.section div[class*="col-"].rad-col-text:not(:first-child) {
max-width: 500px;
margin-left: auto;
}
}
.section div[class*="col-"].rad-col-text h2 {
text-align: center;
}
@media (min-width: 992px) {
.section {
padding-top: 80px;
padding-bottom: 80px;
}
.section .row.row--padded {
margin-top: 80px;
margin-bottom: 80px;
}
.section div[class*="col-"].rad-col-text h2 {
text-align: left;
}
}
.section div[class*="col-"].rad-col-text p {
text-align: center;
}
.section div[class*="col-"] img {
max-width: 100%;
}
.section div[class*="col-"] img.image-left-overflow {
margin-left: 0;
}
.section ul li {
display: block;
position: relative;
padding-left: 15px;
font-weight: 300;
line-height: 1.24;
margin-bottom: 12px;
text-align: left;
}
.section ul li::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 8px;
width: 6px;
height: 6px;
border-radius: 4px;
background-color: #000;
}
/* Override styles for ordered lists */
.section ol {
counter-reset: item;
padding-left: 2rem;
}
.section ol li {
display: list-item;
position: relative;
padding-left: 0;
list-style-position: outside;
}
.section ol li::before {
display: none;
content: none;
}
/* Override for ordered lists - must appear after general li styles to take precedence */
.section ol li {
display: list-item !important;
padding-left: 0 !important;
}
.section ol li::before {
display: none !important;
content: none !important;
width: 0 !important;
height: 0 !important;
}
@media (min-width: 768px) {
.img-clip-left-forward {
-webkit-clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.img-clip-right-backward {
-webkit-clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}
.img-clip-right-forward {
-webkit-clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}
.section div[class*="col-"] img.image-left-overflow {
margin-left: -50px;
}
.section div[class*="col-"] img.image-right-overflow {
margin-right: -150px;
}
}
.section--cta {
padding-top: 80px;
padding-bottom: 80px;
background-color: #000;
color: #fff;
}
.section--cta .h2,
.section--cta h2 {
color: #fff;
}
.section--contact {
padding-bottom: 0;
background-image: url(../img/contact-bg.png);
background-repeat: repeat-x;
background-position: 0 100%;
background-color: white;
}
.section--contact .container {
background-color: #fff;
box-shadow: 0 42px 34px -16px rgba(0, 0, 0, 0.3);
}
.section li {
display: block;
position: relative;
padding-left: 15px;
font-weight: 300;
line-height: 1.24;
margin-bottom: 12px;
text-align: left;
}
.section ol,
.section ul {
padding-left: 1.2rem;
}
.section li::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 8px;
width: 6px;
height: 6px;
border-radius: 4px;
background-color: #000;
}
.header.collapse.show::before,
.header.collapsing::before {
background-color: #fff;
opacity: 1;
}
.header + .section {
margin-top: 120px;
}
.section.four-o-four {
-webkit-box-flex: 1;
flex: 1;
}
.four-o-four {
-webkit-box-flex: 1;
flex: 1;
padding: 125px 30px;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}
.header {
padding-top: 20px;
-webkit-transition-property: height, padding, background-color, box-shadow;
transition-property: height, padding, background-color, box-shadow;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.header::before {
position: absolute;
left: 0;
top: 0;
opacity: 0;
content: "";
width: 100%;
height: 100%;
background-image: none;
background-size: 100% 100%;
background-position: 50% 100%;
-webkit-transition-property: opacity;
transition-property: opacity;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.header.collapse,
.header.collapse:not(.show) {
display: block;
}
.header .navbar-brand,
.header .navbar-nav {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
}
.header.collapse.show {
height: 100vh;
}
.header.collapse.show::before {
-webkit-transition-duration: 0;
transition-duration: 0;
}
.header.collapsing {
height: 100vh !important;
}
.header .navbar {
-webkit-box-pack: center;
justify-content: center;
}
@media (min-width: 992px) {
.section div[class*="col-"].rad-col-text p {
text-align: left;
}
.section div[class*="col-"] img.image-left-overflow {
margin-left: -75px;
}
.header {
padding-top: 35px;
}
.header .navbar {
-webkit-box-pack: justify;
justify-content: space-between;
}
}
.header .navbar-collapse.collapsing {
overflow: hidden !important;
}
.header .navbar-brand {
display: flex;
flex-direction: column;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: start;
align-items: flex-start;
margin-right: 0;
}
.header .navbar-brand img {
width: 117px;
max-height: 40px;
-o-object-fit: contain;
object-fit: contain;
-o-object-position: center center;
object-position: center center;
}
.header .navbar-brand span {
display: block;
}
.header .navbar-brand span:first-child {
align-self: center;
font-size: 25px;
font-weight: 900;
letter-spacing: -1.17px;
color: #AE1B13;
}
@media (min-width: 768px) {
.header .navbar-brand img {
width: 156px;
max-height: 40px;
}
.header .navbar-brand span:first-child {
font-size: 32.9px;
}
}
.header .navbar-brand span:nth-child(2) {
margin-top: -20px;
align-self: center;
font-family: AutumnMoon;
font-size: 25px;
font-weight: 400;
letter-spacing: -1.17px;
color: #000;
}
@media (min-width: 768px) {
.header .navbar-brand span:nth-child(2) {
font-size: 32.9px;
margin-top: -26px;
}
}
.header .navbar-toggler:not(.nav-link) {
position: absolute;
left: 0;
top: 14px;
border: none;
}
.header .navbar-toggler:not(.nav-link) -icon {
-webkit-transform: scale(0.8);
transform: scale(0.8);
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.header .navbar-nav {
display: flex;
flex-direction: column;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
}
.header .navbar-collapse {
margin-top: 30px;
overflow-y: auto;
max-height: calc(100vh - 123px);
}
@media (min-width: 992px) {
.header .navbar-brand {
margin-right: 16px;
}
.header .navbar-toggler:not(.nav-link) {
position: relative;
}
.header .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
align-self: flex-end;
}
.header .navbar-collapse {
margin-top: 0;
overflow-y: visible;
max-height: unset;
}
}
.header .navbar .nav-item {
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.header .navbar .nav-item * {
box-sizing: border-box;
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
}
.header .navbar .nav-item:first-child {
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header .navbar .nav-item .nav-link {
position: relative;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
min-height: 50px;
font-size: 18px;
font-weight: 700;
color: #000;
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 992px) {
.header .navbar .nav-item {
width: auto;
border-bottom: none;
}
.header .navbar .nav-item:first-child {
border-top: none;
}
.header .navbar .nav-item .nav-link {
font-size: 14px;
padding-top: 0;
padding-bottom: 0;
}
}
@media (min-width: 1200px) {
.section div[class*="col-"] img.image-left-overflow {
margin-left: -120px;
}
}
a.nav-link::after {
content: "";
position: absolute;
left: var(--bs-navbar-nav-link-padding-x);
bottom: 5px;
height: 1px;
width: calc(100% - 2 * (var(--bs-navbar-nav-link-padding-x)));
background-color: rgba(0, 0, 0, 0.6);
will-change: transform;
-webkit-transform-origin: 0 50%;
transform-origin: 0 50%;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav-link:focus::after,
.nav-link:focus-visible::after {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.footer_links .nav-item .nav-link::after {
background-color: white;
}
.header .navbar-text {
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
width: 100%;
padding-top: 30px;
padding-bottom: 30px;
}
@media (min-width: 992px) {
.header .navbar .nav-item:hover .nav-link::after,
.footer_links .nav-item:hover .nav-link::after {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
.header .navbar-text {
display: block;
width: auto;
padding: 0;
}
}
.header .navbar-light .navbar-nav .nav-link,
.header .navbar-light .navbar-nav .btn-link {
color: #000;
}
.header--sticky-triggered {
padding-top: 5px;
padding-bottom: 5px;
background-color: #fff;
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}
.footer {
padding-bottom: 60px;
background-color: #000;
color: $white;
}
.footer .items{
padding-top: 60px;
}
.footer {
p, h1, h2, h3, h4, h5, h6 {
color: $white;
}
.text-muted{
color: rgb(233, 236, 239) !important;
}
}
.contact{
h1, h2, h3, h4, h5, h6 {
color: $black;
}
}
.footer .container {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
}
@media (min-width: 992px) {
.footer .container {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
}
}
.footer__left {
display: -webkit-box;
display: flex;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
}
.footer__right {
color: white;
display: -webkit-box;
display: flex;
-webkit-box-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
align-items: center;
grid-area: right;
}
.footer__links {
-webkit-box-flex: 1;
flex: 1;
grid-area: links;
margin-top: 30px;
margin-bottom: 30px;
}
@media (min-width: 992px) {
.footer__links {
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
margin-top: 0;
margin-bottom: 0;
}
}
.footer__copy {
color: rgba(255, 255, 255, 0.6);
white-space: nowrap;
font-size: 12px;
font-weight: 300;
}
.footer .navbar-nav {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
}
@media (min-width: 992px) {
.footer .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
flex-direction: row;
align-self: stretch;
}
}
.footer .navbar-nav .nav-item .nav-link {
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
font-size: 18px;
font-weight: 500;
color: #fff;
padding-top: 4px;
padding-bottom: 4px;
min-height: 50px;
white-space: nowrap;
position: relative;
}
@media (min-width: 992px) {
.footer .navbar-nav .nav-item .nav-link {
display: -webkit-box;
display: flex;
font-size: 14px;
padding: 0 var(--bs-navbar-nav-link-padding-x);
}
}
.rad-showcase {
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
position: relative;
margin-bottom: -20px;
padding-top: 120px;
}
.rad-showcase__bg {
-webkit-box-pack: start;
justify-content: flex-start;
-webkit-box-align: center;
align-items: center;
height: 100%;
position: absolute;
left: 50%;
z-index: 0;
display: none;
}
.rad-showcase__bg img {
width: 100%;
margin-top: 90px;
height: 100%;
max-height: 721px;
}
@media (min-width: 968px) {
.rad-showcase {
min-height: 870px;
padding-top: 0;
margin-bottom: 0;
}
.rad-showcase__bg {
display: -webkit-box;
display: flex;
right: -50px;
}
.rad-showcase__bg img {
width: auto;
}
}
.rad-showcase__bg--mobile {
display: -webkit-box;
display: flex;
position: relative;
left: 0;
right: 0;
opacity: 1;
}
.rad-showcase__bg--mobile img {
margin-top: 40px;
}
.rad-showcase .container {
position: relative;
z-index: 2;
}
.rad-showcase .container h1 {
width: 100%;
font-size: 32px;
}
@media (min-width: 968px) {
.rad-showcase__bg--mobile {
display: none;
}
.rad-showcase .container h1 {
font-size: 48px;
}
}
.rad-showcase .container h1 span {
display: block;
margin-top: 5px;
font-weight: 300;
}
.rad-showcase .container p.lead {
width: 100%;
}
.platform-links {
margin-top: 40px;
margin-right: -5px;
}
@media (min-width: 992px) {
.platform-links {
margin-right: -10px;
}
}
.platform-links [class^="icon-"] {
margin-right: 5px;
font-size: 17px;
color: #000;
}
.platform-links [class^="icon-"]:hover::before {
-webkit-transition-duration: 0.15s;
transition-duration: 0.15s;
-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
@media (min-width: 992px) {
.platform-links [class^="icon-"] {
font-size: 19px;
margin-right: 10px;
}
}
.rad-showcase + section {
margin-top: 0;
}
@media (min-width: 1200px) {
.rad-showcase {
min-height: 870px;
padding-top: 0;
margin-bottom: 0;
}
.rad-showcase + section {
margin-top: -70px;
}
}
/* adritian custom css */
.profile-image img {
max-inline-size: 100%;
block-size: auto;
}
.profile-image img {
margin-top: 40px;
}
.rad-showcase__bg img {
margin-top: 0;
margin-left: 100px;
max-width: 100%;
}
@media only screen and (min-width: 768px) {
.rad-showcase__bg img {
height: 400px;
}
}
.header .navbar-brand {
flex-direction: row;
}
.header .navbar-brand span {
display: inline;
}
.header .navbar-brand span:nth-child(2) {
font-family: inherit;
margin-top: 0;
}
#breadcrumb-bar {
position: relative;
padding-top: 120px;
nav {
display: inline-block;
}
}
.breadcrumbs {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.25rem;
margin: 0;
list-style: none;
background: var(--rad-color-box, rgba(0, 0, 0, 0.03));
border-radius: 0.5rem;
font-size: 0.925rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.breadcrumb-item {
display: flex;
align-items: center;
line-height: 1.5;
&:not(:last-child)::after {
content: "";
margin-left: 0.5rem;
font-size: 1.2rem;
color: var(--rad-color-text-muted, rgba(0, 0, 0, 0.4));
font-weight: 300;
}
&.active {
font-weight: 600;
color: var(--rad-color-primary, #000);
.breadcrumb-text {
color: var(--rad-color-primary, #000);
}
}
}
.breadcrumb-link {
display: inline-flex;
align-items: center;
gap: 0.375rem;
color: var(--rad-color-text-secondary, rgba(0, 0, 0, 0.65));
text-decoration: none;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
transition: all 0.2s ease;
&:hover {
color: var(--rad-color-primary, #000);
background: rgba(0, 0, 0, 0.05);
text-decoration: none;
.breadcrumb-icon {
transform: scale(1.1);
}
}
&:focus {
outline: 2px solid var(--rad-color-primary, #000);
outline-offset: 2px;
}
}
.breadcrumb-icon {
font-size: 1rem;
line-height: 1;
transition: transform 0.2s ease;
}
.breadcrumb-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
// Dark mode support
html[data-bs-theme="dark"] {
.breadcrumbs {
background: linear-gradient(135deg, rgba(80, 90, 100, 0.95) 0%, rgba(70, 80, 90, 1) 100%);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 255, 255, 0.25);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
.breadcrumb-item {
&:not(:last-child)::after {
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
}
&.active {
.breadcrumb-text {
color: #fff;
font-weight: 700;
}
}
}
.breadcrumb-link {
color: rgba(255, 255, 255, 0.95);
&:hover {
color: #fff;
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
transform: scale(1.02);
}
&:focus {
outline: 2px solid rgba(255, 255, 255, 0.7);
outline-offset: 2px;
}
}
.breadcrumb-icon {
filter: brightness(1.5) contrast(1.2);
}
.breadcrumb-text {
color: rgba(255, 255, 255, 0.95);
}
}
// Responsive design
@media (max-width: 768px) {
.breadcrumbs {
font-size: 0.875rem;
padding: 0.625rem 1rem;
gap: 0.375rem;
}
.breadcrumb-text {
max-width: 150px;
}
.breadcrumb-icon {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
#breadcrumb-bar {
padding-top: 100px;
}
.breadcrumbs {
font-size: 0.8rem;
padding: 0.5rem 0.75rem;
}
.breadcrumb-text {
max-width: 100px;
}
}
.book-category {
font-size: 1.5em;
padding-bottom: .3em;
border-bottom: 1px solid rgb(200, 200, 200);
width: 100%;
}
.book-category-anchor .icon {
font-size: 12px
}
ul.book-category-content {
padding-left: 0;
}
.book-card a.goodreads {
float: right;
}
.goodreads-search {
margin-left: 64px;
width: 16px;
}
.book-content {
width: 100%;
}
.book-content .book-header {
margin-bottom: 10px;
}
.book-content h5,
.book-content h6 {
display: inline;
font-weight: 500;
}
.book-content h5 {
margin-right: -2px;
}
.book-content .goodreads-link {
float: right;
}
#books .row {
margin: 0;
}
ul.book-category-content {
list-style: none;
}
.book-content.featured::before {
content: "\2605"; /* Unicode bullet symbol */
color: $base-color; /* Bullet color */
/* Optional tweaks */
font-weight: bold;
padding-right: 10px;
background-color: transparent;
top: 4px;
left: -5px;
}
li.book-content p {
line-height: normal;
}
.about__profile-picture img {
object-fit: contain;
}
.footer__copy a {
color: white;
}
.posts-list,
.posts-list.container {
padding-left: 0;
}
.posts-list article.summary {
margin-bottom: 20px;
font-size: 14px;
font-weight: 300;
color: #333;
}
.posts-list article.summary .post-meta {
font-weight: 500;
.post-meta-info{
margin-bottom: 10px;
}
}
article.post.summary h2 {
font-size: 40px
}
.post-summary {
margin-top: 20px;
}
.post-content {
margin-bottom: 20px;
img {
max-width: 100%;
height: auto;
margin: 1.5rem 0;
border-radius: 0.375rem;
}
a {
color: $base-color;
text-decoration: underline;
transition: color 0.2s ease-in-out;
&:hover {
color: darken($base-color, 20%);
text-decoration: underline;
}
&:focus {
outline: 2px solid rgba($base-color, 0.5);
outline-offset: 2px;
}
&.external {
&::after {
content: "\2197"; // Unicode for upward-right arrow
display: inline-block;
margin-left: 0.25em;
font-size: 0.8em;
}
}
}
}
// Single blog post improvements
#blog-single {
#main-content {
max-width: 820px;
margin: 0 auto;
padding: 0 1.5rem;
h1 {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 2rem;
margin-top: 1.5rem;
font-weight: 700;
a {
color: inherit;
text-decoration: none;
&:hover {
color: $base-color;
}
}
}
.post-content,
.col-12 {
font-size: 1.125rem;
line-height: 1.75;
}
}
}
ul.tags,
ul.topics,
ul.list-taxonomy {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin: 0;
padding: 0;
list-style: none;
li {
margin-bottom: 0;
padding-left: 0;
border: none !important;
background: none !important;
&::before {
display: none !important;
}
a {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #f5f5f5;
color: #333;
text-decoration: none;
border: none;
border-radius: 0.25rem;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.2s ease;
&:hover {
background-color: #e8e8e8;
color: #000;
transform: translateY(-1px);
}
}
}
}
div.blog-single a{
color: $base-color
}
#blog-single #meta {
margin-bottom: 3rem;
margin-top: 0.5rem;
section {
font-weight: 300;
font-size: 1rem;
color: var(--bs-secondary-color);
margin-bottom: 1.25rem;
}
h4 {
font-size: 1rem;
font-weight: 400;
display: inline;
color: var(--bs-body-color);
}
h5 {
font-size: 0.875rem;
font-weight: 300;
display: inline;
}
#topics,
.tags {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 1.25rem;
margin-bottom: 0;
padding-left: 0;
list-style: none;
li {
margin-bottom: 0;
padding-left: 0;
border: none !important;
background: none !important;
&::before {
display: none !important;
}
a {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #f5f5f5;
color: #333;
text-decoration: none;
border: none;
border-radius: 0.25rem;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.2s ease;
&:hover {
background-color: #e8e8e8;
color: #000;
transform: translateY(-1px);
}
}
}
}
}
.light-border-bottom::after {
content: "";
width: 100%;
height: 1px;
max-width: 100%;
background-color: var(--bs-border-color);
display: block;
margin-top: 2rem;
margin-bottom: 0;
}
// Keep legacy support for articles
article.summary .post-meta h4 {
font-size: 16px;
font-weight: light;
display: inline;
}
article.summary .post-meta h5 {
font-size: 14px;
font-weight: light;
display: inline;
}
aside.content-browser {
margin-top: 20px;
padding-top: 10px;
}
.light-border-top::before {
content: "";
width: 80%;
height: 1px;
max-width: 1170px;
background-color: #adb5bd;
display: block;
margin-top: 20px;
margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
.header .navbar-brand {
margin-top: 10px;
}
}
@media only screen and (max-width: 990px) {
.rad-showcase__bg img {
margin-left: 0;
}
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
.header {
padding-top: 10px;
}
}
@media only screen and (min-width: 968px) and (max-width: 992px) {
.rad-showcase {
padding-top: 100px;
}
}
@media only screen and (min-width: 992px) {
.rad-showcase {
padding-top: 120px;
}
}
/* end adritian custom css */
.popover,
.tooltip,
address {
font-style: normal;
}
.breadcrumb-item + .breadcrumb-item:hover::before,
.btn-link,
.btn:hover,
.card-link:hover,
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover,
.nav-link:focus,
.nav-link:hover,
.navbar-brand:focus,
.navbar-brand:hover,
.navbar-toggler:focus,
.navbar-toggler:hover,
.page-link:hover,
a,
a.badge:focus,
a.badge:hover,
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
text-decoration: none;
}
.accordion > .card,
.collapsing,
.dropdown-divider,
.modal-open,
.progress,
.toast,
svg {
overflow: hidden;
}
img,
svg {
vertical-align: middle;
}
.dropdown-menu,
.tooltip,
body,
caption {
text-align: left;
}
.popover,
.tooltip,
button,
select {
text-transform: none;
}
pre,
textarea {
overflow: auto;
}
.badge,
progress,
sub,
sup {
vertical-align: baseline;
}
.custom-range,
.custom-select,
[type="search"] {
-webkit-appearance: none;
}