﻿.section-title {
    margin-bottom: 50px;
    position: relative;
}
.title-bdr {
    position: relative;
    width: 150px;
    margin-bottom: 40px;
}

.text-center .title-bdr {
    margin-left: auto;
    margin-right: auto;
}

.left-bdr,
.right-bdr {
    height: 6px;
    width: 60px;
    background-color: #167c90;
    border-radius: 10px;
    position: absolute;
}

.left-bdr {
    left: 0px;
    animation: left 2s infinite;
}

.right-bdr {
    right: 0px;
    animation: right 2s infinite;
}

@keyframes left {
    0%, 50%, 100% {
        width: 60px;
    }

    25% {
        width: 120px;
    }

    75% {
        width: 10px;
    }
}

@keyframes right {
    0%, 50%, 100% {
        width: 60px;
    }

    25% {
        width: 10px;
    }

    75% {
        width: 120px;
    }
}

.theme-bg .left-bdr,
.theme-bg .right-bdr {
    background-color: rgba(255, 255, 255, 0.5);
}

.banner-pulse {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 200px;
    height: 200px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 10px;
    border-radius: 50%;
    animation: banner-pulse 2s linear infinite;
}

@keyframes banner-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.2)
    }

    40% {
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0)
    }

    80% {
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 40px rgba(255, 255, 255, 0)
    }
}
