:root {
    scroll-behavior: auto;
    --base-color: #5b5675;
    --heading-color: #1b305a;
    --primary-color: #1b305a;
    --light-color: #f8f7fc;
    --yellow-color: #ffc800;
    --border-color: #edebfd;
    --white-loft: #f3f1fe;
    --base-font: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--heading-font);
    color: var(--primary-color);
}
main{
    min-height: 90vh;
}
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--heading-color);
}

/** Button styles */
.theme-btn,
a.theme-btn {
    z-index: 1;
    cursor: pointer;
    font-weight: 700;
    transition: 0.5s;
    position: relative;
    text-align: center;
    padding: 11px 30px;
    border-radius: 5px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
}

.theme-btn,
a.theme-btn,
.theme-btn.style-two:hover,
a.theme-btn.style-two:hover {
    color: white;
    background: var(--primary-color);
}

.theme-btn:hover,
a.theme-btn:hover,
.theme-btn.style-two,
a.theme-btn.style-two {
    background: var(--white-loft);
    color: var(--primary-color);
    text-decoration: none;
}

.main-header nav {
    position: relative;
    z-index: 5;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fixed-header nav {
    top: 0;
    position: fixed;
    background: white;
    animation: sticky 1s;
    -webkit-animation: sticky 1s;
    box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
    -webkit-box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
}
.main-header:not(.fixed-header) nav .container-wrapper{
    border-bottom: 1px solid var(--border-color);
}
.card-solucao {
    transition: 0.5s;
    background: white;
    text-align: center;
    border-radius: 5px;

    border: 1px solid var(--border-color);
    box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
    -webkit-box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
}

.card-solucao-body {
    padding: 35px 30px 10px;
    border-bottom: 1px solid var(--border-color);
    min-height: 349px !important;
}

.card-solucao-body i {
    z-index: 1;
    font-size: 65px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    color: var(--primary-color);
}

.card-solucao-body i:after {
    content: '';
    height: 75px;
    width: 75px;
    top: -15px;
    left: -25px;
    z-index: -1;
    position: absolute;
    background: var(--white-loft);
    border-radius: 50%;
}

a.callaction{
    padding: 15px;
    margin-bottom: 30px;
    display: block;
    font-weight: 700;
    text-align: center;
    color: var(--white-loft);
    background: var(--primary-color);
    text-decoration: none;
}
a.callaction:hover{
    background-color: #0d1e3e;
}
a.callaction i {
    margin-left: 10px;
    transition: transform 0.2s ease;
}
a.callaction:hover i {
    /* transform: translateX(15px);
    transition: .2s; */
    animation: mover 0.5s infinite alternate;
}
@keyframes mover {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(15px);
    }
}
.accordion-item{
    padding: 20px 80px 20px 20px;
}
.accordion-flush .accordion-item{
    box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
    margin: 20px 0;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-flush .accordion-item,
.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button:not(.collapsed){
    background-color: white;
    color: #0d1e3e;
    border-radius: 20px;
}
.accordion-button::after{
    content: "\002B";
    font-size: 2.2rem;
    height: 2.5rem;
    position: absolute;
    right: 15px;
    top: 0px;
    transition: 0.2s;
    color: #0d1e3e;
    background-image: none;
}
.accordion-button:not(.collapsed){
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after{
    transform: rotate(45deg);
    background-image: none;
}
.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99;
    display: none;
    cursor: pointer;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    border: 1px solid #ffffff33;
    background: var(--primary-color);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
.bg-soft-white{
    background-color: var(--light-color);
    padding: 10px 0 0 0;
}

button {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s, border-color 0.3s;
}
