:root {
    --brand-color: #153258;
    --color-sec: #fcb51f;
}

.brand-logo {
    width: 12rem;
}

.profile-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid #153258;
    padding: 6px;
}

.text-area-size {
    height: 200px !important;
}

.testimonial {
    font-weight: 500;
    font-size: 1.1rem;
}

.customer-name {
    font-weight: 600;
    font-size: 1.4rem;
    text-align: center;
    color: #153258;
}

body {
    font-family: roboto;
}

.b-1 {
    font-weight: 800;
}

.text-brand {
    color: var(--brand-color);
}

.brand-color {
    color: var(--brand-color) !important;
}

.sec-color {
    color: var(--color-sec) !important;
}

.border-left-brand {
    border-left-color: var(--brand-color);
    border-left-width: 0.2rem;
}

.optionbtn {
    color: var(--brand-color);
    border-color: var(--brand-color);
    border-radius: 0.2rem;
    border-width: 1px;
    border-style: solid;
    margin-left: 3px;
    margin-right: 3px;
    text-align: center;
}

.optionbtn:hover {
    background: var(--brand-color);
    color: #fff;
    cursor: pointer;
}

.optionbtn.active {
    background: var(--brand-color);
    color: #fff;
    cursor: pointer;
}



.btn-brand {
    background: var(--brand-color);
    color: #fff;
}

.circle {
    border: 50px solid var(--brand-color);
    border-radius: 50%;
    width: 800px;
    height: 800px;
    position: absolute;
    top: -400px;
    left: -400px;
    z-index: -10;
}

.brand-font {
    font-family: 'Yesteryear', cursive !important;
}

.tip {
    display: inline-block;
    color: #fff;
    border-radius: 50%;
    border-color: var(--brand-color);
    background: var(--brand-color);
    width: 20px;
    height: 20px;
    text-align: center;
}

.tip:hover {
    background: #000;
    border-color: #000;
}

.introjs-helperLayer {
    mix-blend-mode: overlay !important;
}

.shadow-pulse {
    animation: shadow-pulse 2.0s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(137, 136, 222, 0.23);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}