/* saira-regular - latin */
@font-face {
    font-family: 'Saira';
    font-style: normal;
    font-weight: 400;
    src: local('Saira Regular'), local('Saira-Regular'),
    url('../fonts/saira-v4-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/saira-v4-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

html {
	scroll-behavior: smooth;
}

body {
    font-family: 'Saira', 'Lato', sans-serif;
}

a {
    color: rgba(250,159,0,1);
}

a:hover {
    color: rgb(250,90,0);
}

p {
    padding-left: .3rem;
    padding-right: .3rem;
}

::selection {
    background: rgba(250, 159, 0, 0.5);
}

.header-nav>.btn {
    margin: 5px;
}

@media (max-width: 767.98px) {
    .header-nav>.btn {
        width: 90%;
        max-width: 500px;
        margin-bottom: 5px;
    }
}

.lb-section {
    padding: 1.2rem 0 1.2rem 0;
    border-bottom: 1px solid lightgrey;
}

.lb-section-strong-border {
    border-bottom: 2px solid rgba(0,0,0,0.3);
}

.lb-section-full-height {
    height: 100vh;
}

.lb-margin-bottom {
    margin-bottom: 2%;
}

.lb-title-image {
    margin: 2rem auto;
    max-width: 100%;
    height: auto;
}

.download-card {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background-color: rgba(249, 249, 249, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.download-card-text {
    margin-top: auto;
    padding-top: 1rem;
}

.download-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-highlight {
    background-color: #edfff9;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.card-icon {
    color: black;
    transition: color 0.2s ease-in-out;
}

.card-highlight:hover .card-icon {
    color: var(--icon-hover-color);
}

.card-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    background: linear-gradient(to bottom right, white, transparent)
}

#features {
    transition: background-color 2s linear;
}

.feature-group {
    margin-bottom: 2rem;
}

.feature-group h4 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-group h4 .bi {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--active-feature-icon-color, rgb(250, 90, 0));
    flex-shrink: 0;
    transition: color 2s linear;
}

.feature-sublist {
    padding-left: 0;
    margin-left: 0.5rem;
}

.feature-sublist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.4rem;
}

.feature-sublist li .bi-lightbulb-fill {
    color: var(--active-feature-icon-color, rgb(250, 90, 0));
    transition: color 2s linear;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.lb-bg-gradient {
    background:
	linear-gradient(
		cyan,
		transparent
	),
	linear-gradient(
		-45deg,
		magenta,
		transparent
	),
	linear-gradient(
		45deg,
		yellow,
		transparent
	);
    background-blend-mode: multiply;
    background-attachment: fixed;
}

.lb-bg-gradient p, .lb-bg-gradient h1 {
    text-shadow: 0 1px rgba(0, 0, 0, 0.28);
}

.lb-bg-light {
    background-color: rgba(249,249,249,1);
}

.lb-bg-lightcolor-green {
    background: rgba(81, 244, 141, 0.1);
}

#lb-back-to-top {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 1000;
    outline: none;
    background-color: rgba(250,165,31,0.75);
    color: black;
    cursor: pointer;
    padding: 15px;
    border-radius: 30px;
    border: 1px solid rgba(3,3,3,1);
    transition-duration: 0.2s;
    text-decoration: none;
}

#lb-back-to-top:hover {
    bottom: 5.5%;
}

#lb-back-to-top:active {
    background-color: rgba(84,253,142,0.75);
    transition-duration: 0.1s;
}

.lb-btn-big {
    font-size: 1.3rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    cursor: pointer;
}

.lb-question {
    color: rgba(250,159,0,1);
    padding: 1rem 0 1rem 0;
    text-align: left;
}

.lb-copyright {
    text-align: right;
    color: grey;
}

.btn {
    margin-top: .5%;
}

.btn-primary {
    background: linear-gradient(to bottom right, rgba(84,253,149,1) 0%, rgba(18,0,255,0.28) 80%); 
    border-color: black;
    color: black;
}

.btn-primary:hover {
    background: linear-gradient(to bottom right, white, rgba(250,159,0,1));
    border-color: inherit;
    transform: scale(1.05);
    color: inherit;
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(84,253,149,0.73);
}

.btn-outline-primary {
    color: black;
    border-color: black;
    background: linear-gradient(to bottom right, rgba(84,253,149,1) 0%, rgba(0,0,0,0) 50%);
}

.btn-outline-primary:hover {
    color: inherit;
    border-color: inherit;
    transform: scale(1.05);
    background: linear-gradient(to bottom right, white, rgba(250,159,0,1));
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 3px rgba(84,253,149,0.73);
}

.btn-secondary {
    color: black;
    font-size: 12px;
    background-color: rgba(134, 142, 150, 0.63);
}

.alert-primary {
    color: black;
    background-color: rgba(0, 109, 254, 0.16);
    border-color: black;
}

hr.lb-hr-strong {
	border-top: 3px solid rgba(140,139,139,1);
}

.lb-font-small {
    font-size: 50%;
}

.blueimp-gallery {
    background-color: rgba(0, 0, 0, 0.77) !important;
}
