:root {
    --text-color : #57575a;
    --text-color-dark : #303030;
    --text-hashed : #7c858d;
    /*--brand-bg: #353847;*/
    --brand-bg: #2976a6;
    --gray-bg: #f4f7fc;
    --brand-color : #2976a6;
    --dark-brand-color : #226690;
    --accent-color : #2976a6;
    --dark-accent-color : #21587e;
    --secondary-accent-color : #f2668b;
    --dark-secondary-accent-color : #da4b71;
    --blue: #3b7ddd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --semi-white-bg: #f8f9fb;
    --app-background-color: #f8f9fb;
    --light-white-color: #f7f7f7;
    --black-color: #000;
    --white-color: #fff;
    --light: #e9ecef;
    --gray: #7c858d;
    --gray-dark: #343a40;
    --gray-light: #f2f2fc;
    --gray-lighter: #f9f9f9;
    --primary: #687ae8;
    --secondary: #95aac9;
    --success: #0c9;
    --info: #19b5fe;
    --warning: #f7bc06;
    --danger: #f2545b;
    --danger-flat: #e26a6a;
    --tertiary: #94a1ef;
    --max-width: 1320px;
    --max-width-wide: 1460px;
    --top-bar-height: 44px;
    --navbar-height: 120px;
    --navbar-height-mobile: 80px;
    --bs-btn-padding-y : 30px;
    --bs-btn-padding-x : 24px;

    --border-radius-small: 8px;
    --border-radius: 16px;
    --border-radius-large: 22px;
    --border-radius-x-large: 30px;
    --footer-color: #f8f8f8;
    --footer-text-color: #545454;
}
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    font-size: 17px;
    font-optical-sizing: auto;
}
header {
    --accent-color: var(--brand-color);
}
@media (min-width: 1800px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: min(var(--max-width-wide), 100%);
    }
}


* {
    --bs-gutter-x : 40px;
}
body p {
    font-size: 18px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    body p {
        font-size: 16px;
    }
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.h4 {
    font-size: 1.2em;
    line-height: 1.5;
}

.h5 {
    font-size: 1.1em;
    line-height: 1.6;
}
.desc-font {
    font-size: 1.1em;
}
.custom-font {
    font-family: 'Lato', sans-serif;
}
.align-baseline {
    align-items: baseline;
}
.quick-animated {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.animated {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

.has-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
}

.op-animated {
    -webkit-transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
}
.darken-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: -1;
}
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    object-position: center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.op0 {
    opacity: 0;
}

.op1 {
    opacity: 1;
}

a.underline {
    text-decoration: underline;
}
a:not(.btn) {
    /*color: var(--accent-color);*/
    color: var(--accent-color);
    text-decoration: none;
}

a.underline {
    text-decoration: underline;
}

a:hover {
    color: var(--dark-brand-color);
    text-decoration: none;
}
img {
    max-width: 100%;
}

.big-font {
    font-size: 2.0em
}

.extra-big-font {
    font-size: 2.8em;
}
.custom-size {
    font-size: 2.1em;
}
@media (max-width: 992px) {
    .big-font {
        font-size: 1.7em
    }

    .extra-big-font {
        font-size: 2.1em;
    }
    .custom-size {
        font-size: 1.5em;
    }
}

.thick {
    font-weight: 900;
}
.semibold, .medium {
    font-weight: 500;
}
.bold {
    font-weight: 700;
}
.thin {
    font-weight: 300;
}

.uppercase {
    text-transform: uppercase
}

.icon-margin-4 {
    margin-right: 4px
}

.icon-margin-8 {
    margin-right: 8px
}

.icon-margin-12 {
    margin-right: 12px
}

.icon-margin-18 {
    margin-right: 18px
}

.icon-margin-24 {
    margin-right: 24px
}

.icon-margin-top-8 {
    margin-top: 8px
}

.icon-margin-top-12 {
    margin-top: 12px
}

.icon-margin-top-18 {
    margin-top: 18px
}

.icon-margin-top-24 {
    margin-top: 24px
}

.cls {
    clear: both
}

.relative {
    position: relative
}
.z1 {
    z-index: 1 !important;
}
.z2 {
    z-index: 2 !important;
}
.marginer {
    display: block;
    clear: both;
    height: 1px;
    margin: 32px auto
}

.spacer-invis {
    display: block;
    clear: both;
    height: 1px;
    margin: 18px auto
}

.spacer-tiny {
    display: block;
    clear: both;
    height: 1px;
    margin: 8px auto
}
.text-dark {
    color: var(--text-color-dark) !important;
}
.text-color {
    color: var(--text-color) !important;
}
.text-light {
    color: var(--text-hashed) !important;
}
.hashed {
    color: #999 !important
}

.push-5 {
    margin-bottom: 5px;
}

.push-5-t {
    margin-top: 5px;
}

.push-10 {
    margin-bottom: 10px;
}

.push-10-t {
    margin-top: 10px;
}

.push-20 {
    margin-bottom: 20px;
}

.push-20-t {
    margin-top: 20px;
}

.push-30 {
    margin-bottom: 30px;
}

.push-30-t {
    margin-top: 30px;
}

.p300 {
    font-weight: 300;
}

.p400 {
    font-weight: 400;
}

.p700 {
    font-weight: 700;
}

.p900 {
    font-weight: 900;
}
.full-height {
    height: 100%;
}

.padding-10 {
    padding: 10px;
}

.padding-20 {
    padding: 20px;
}
.font-1-1 {
    font-size: 1.1em;
}
.justify-content-center {
    justify-content: center;
}
.no-b {
    border: none;
}
.btn {
    padding: 10px 28px;
    border-radius: var(--border-radius-small);
}
.btn:not(.btn-rounded){
    border: none !important;
}
.btn-rounded {
    border-radius: 50px;
}
.btn-outline {
    border: 2px solid var(--accent-color) !important;
    background-color: transparent !important;
}
.btn-default {
    background-color: var(--light-white-color);
}
.btn-default:hover, .btn-default:focus {
    background-color: #eee;
}
.btn-dark {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--light-white-color);
    font-weight: 500;
}
.btn-accent {
    background-color: var(--secondary-accent-color);
    border: 2px solid var(--secondary-accent-color);
    color: var(--light-white-color);
    font-weight: 500;
}
.btn-new {
    border-radius: var(--border-radius-large) 0 var(--border-radius-large) 0;
}
.brand {
    color: var(--accent-color);
}
.accent {
    color: var(--secondary-accent-color);
}

.btn-dark:hover {
    color: #fff;
    background-color: var(--dark-accent-color);
    border-color: var(--dark-accent-color);
}
.btn-accent:hover {
    background-color: var(--dark-secondary-accent-color);
    border: 2px solid var(--dark-secondary-accent-color);
    color: #fff;
}
.btn-wide {
    padding-left: 52px !important;
    padding-right: 52px !important;
}

.btn-x-wide {
    padding-left: 72px !important;
    padding-right: 72px !important;
}


.hero-text {
    font-size: 3.3em;
}

@media (max-width: 992px) {
    .hero-text {
        font-size: 2.1em;
    }
    .inner-banner h4.bold {
        font-size: 1.2em;
    }
    .btn-wide {
        padding-left: 24px;
        padding-right: 24px;
    }
    .btn-x-wide {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/*
general
 */
.solotude-image-border {
    border-radius: var(--border-radius-x-large) 0 var(--border-radius-x-large) 0;
}
/*
Sections and covers
 */
.section {
    padding: 100px 0;
    position: relative;
}
.section-blue {
    background-color: var(--brand-color);
    background-image: linear-gradient(to right, var(--dark-brand-color), var(--brand-color));
}
.section.has-cover {
    position: relative;
    z-index: 0;
}

.section.has-cover .section-cover-top {
    position: absolute;
    width: 100%;
    top: 1px;
    transform: translateY(-100%);
}
.section.has-cover .section-cover-bottom {
    position: absolute;
    width: 100%;
    top: calc(100% - 1px);
    z-index: 1;
    /*transform: translateY(-100%);*/
}
.first-section {
    padding: 70px 0 120px 0;
}
.section-extra-padding {
    padding: 150px 0;
}
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
        position: relative;
    }
    .section-extra-padding {
        padding: 80px 0;
    }
}
.section-grey, .bg-grey {
    background-color: #f7f7f7;
}
.section-black, .bg-black {
    background-color: var(--black-color);
}
.section-white, .bg-white {
    background-color: #fff;
}
.section-dark, .bg-dark {
    background-color: var(--dark-accent-color);
}

.section-title {
    position: relative;
    color: var(--text-color-dark);
    display: inline-block;
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 36px;
}
@media (max-width: 992px) {
    .section-title {
        font-size: 1.7em;
    }
}
.text-effect {
    position: relative;
    display: inline-block;
}
.section-title:not(.no-effect):after, .text-effect:after {
    position: absolute;
    content: '';
    display: block;
    height: 12px;
    border-radius: 4px;
    background-color: var(--secondary-accent-color);
    left: 0;
    bottom: 0;
    width: calc(100% - 6px);
    opacity: 0.2;
}
.text-effect-sm:after {
    height: 8px;
    bottom: 2px;
}

a.text-effect:hover::after {
    background-color: var(--dark-secondary-accent-color);
    opacity: 0.3;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.subtitle {
    padding-top: 10px;
}

/*
input
 */
.contact-form-container {
    margin-left: calc(-.25 * var(--bs-gutter-x));
}
.input {
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: none;
    padding: 10px 20px;
    margin-bottom: 10px;
    caret-color: var(--text-color);
    border: 1px solid transparent;
}
.input:focus {
    box-shadow: 0 0 0 .25rem rgba(200,200,200,.25);
}
.input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--text-color);
    opacity: 0.4;
}

.input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--text-color);
    opacity: 0.4;
}

.input::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--text-color);
    opacity: 0.4;
}
select {
    color: var(--text-color);
}
select.no-val {
    color: #aaa;
}

option {
    font-weight: 400 !important;
    font-family: sans-serif;
}

/*
footer
 */
.pre-footer svg {
    fill: var(--footer-color);
}
footer {
    background-color: var(--footer-color);
    padding: 1px 20px 60px 20px;
}

.footer-logo img {
    max-width: 240px;
}

.footer-title {
    font-size: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    padding-bottom: 28px;
}

.footer-column {
    color: var(--footer-text-color);
}
.footer-column a {
    color: var(--text-color);
}
.footer-column a:hover {
    color: var(--brand-color);
}
.footer-link {
    display: block;
    padding: 7px 5px 7px 0;
}
/*.footer-link:before {*/
/*    content: '-';*/
/*    display: inline-block;*/
/*    margin-right: 10px;*/
/*}*/
.footer-socials a {
    display: inline-block;
    padding: 10px;
    margin-right: 5px;
}

.footer-title {
    color: var(--text-color-dark);
    font-size: 1.4em;
}

.bottom-bar {
    padding: 30px 0 20px 0;
    color: var(--footer-text-color);
    font-size: 0.9em;
    border-top: 1px solid #ddd;
    margin-top: 90px;
}
.bottom-bar a {
    color: var(--text-color-dark);
}
@media (max-width: 992px) {
    footer {
        padding: 70px 20px 10px 20px;
    }
    .footer-title {
        margin-top: 60px;
    }
}
#top-of-the-site {
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
}

.title-label {
    font-size: 1.3em;
    color: white;
    background-color: var(--secondary-accent-color);
    padding: 14px 67px;
    font-weight: 700;
    border-radius: var(--border-radius-large) 0 var(--border-radius-large) 0 ;
}

/*
Icon cards
 */
.st-icon-card {
    padding: 40px 3rem 2rem;
    position: relative;
    border-radius: var(--border-radius-x-large) 0 var(--border-radius-x-large) 0;
    box-shadow: 2px 8px 15px rgba(0,0,0,0.04);
    background-color: white;
    height: 100%;
    /*box-shadow: 0 15px 15px rgba(240,100,140,0.05);*/
    /*filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));*/
}
.st-icon-card .icon{
    font-size: 3rem;
    color: var(--brand-color);
    text-align: right;
}
.st-icon-card h4{
    color: var(--text-color-dark);
    margin-bottom: 30px;
    font-weight: 700;
}


.st-horizontal-icon {
    padding: 20px 30px 20px 20px;
    border-radius: var(--border-radius-x-large) 0 var(--border-radius-x-large) 0;
    border: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.st-horizontal-icon:not(:nth-child(2n)) {
    margin-left: 15%;
}
.st-horizontal-icon:nth-child(2n) {
    margin-right: 15%;

}
.st-horizontal-icon .icon {
    padding: 30px;
    margin-right: 20px;
}
.st-horizontal-icon h4{
    font-weight: 700;
}
.st-horizontal-icon p{
    margin-bottom: 0;
}

.st-horizontal-icon.content-white {
    color: white;
    border: 3px solid var(--secondary-accent-color);
}
.st-horizontal-icon.content-white .icon svg{
    fill: white;
}

@media (max-width: 768px) {
    .st-horizontal-icon {
        padding: 15px;
    }
    .st-horizontal-icon:not(:nth-child(2n)) {
        margin-left: 0;
    }
    .st-horizontal-icon:nth-child(2n) {
        margin-right: 0;
    }
    .st-horizontal-icon .icon {
        padding: 18px;
        margin-right: 10px;
    }
    .st-horizontal-icon .icon svg {
        width: 50px;
        height: 50px;
    }
}

.st-cta-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    font-size: 1.2em;
    color: white;
    max-width: min(90%, 450px);
}
@media (max-width: 992px) {
    .st-cta-content {
        bottom: 5%;
        font-size: 1em;
        padding-right: 20px;
    }
    .st-cta-content img{
        width: 140px;
    }
}

/**
Tabs
 */
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--secondary-accent-color);

}
.nav-pills .nav-link:first-child {
    margin-left: 0;
}
.nav-pills .nav-link {
    margin: 5px 20px;
    color: var(--white);
    background-color: #bbb;
    padding: 12px 34px;
    font-weight: 700;
    border-radius: var(--border-radius) 0 var(--border-radius) 0;
    font-size: 1.1em;
}
.nav-pills .nav-link:hover {
    background-color: #999;
}

.st-horizontal-icon-card {
    padding: 0 10px;
}
.st-horizontal-icon-card .icon {
    color: var(--accent-color);
    font-size: 3em;
}

.big-icon {
    font-size: 4em;
}
@media (max-width: 992px) {
    .big-icon {
        font-size: 2.8em;
    }
}
ul.no-style {
  list-style: none;
    padding: 0;
}
ul.no-style li {
    padding-bottom: 10px;
}
