.c-content-wrapper {
    padding: 0px 15px;
    margin: 0 auto;
}

.wave-seperator {
    background: url('../../theme/images/common/wave-separator.png') no-repeat center center;
    display: inline-block;
    padding: 0px 3px;
    text-indent: -9999px;
    height: 33px;
    width: 7px;
    margin: 0px 15px;
}

.wave-seperator--right {
    margin: 0px 15px 0px 0px;
}

.wave-seperator--right--10 {
    margin: 0px 10px 0px 0px;
}

.white-anibutton {
    background: #fff;
    color: #1a416a;
    display: inline-block;
    padding: 5px 20px;
    text-transform: uppercase;
    animation: leave 0.4s forwards;
}

.white-anibutton.active,
.white-anibutton:active,
.white-anibutton:focus,
.white-anibutton:hover {
    background: linear-gradient(135deg,  #1a416a 0%,#7db9e8 50%,#1a416a 99%);
    color: #fff;
    text-decoration: none;
    background-size: 200% 200%;
    animation: hover 5s infinite;
}

.blue-anibutton {
    background: #1a416a;/* 0%,#7db9e8 50%,#1a416a 99%)*/
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    text-transform: uppercase;
    animation: leave 0.4s forwards;
}

.blue-anibutton.active,
.blue-anibutton:active,
.blue-anibutton:focus,
.blue-anibutton:hover {
    background: linear-gradient(135deg,  #1a416a 0%,#7db9e8 50%,#1a416a 99%);
    color: #fff;
    text-decoration: none;
    background-size: 200% 200%;
    animation: hover 5s infinite;
}

.blue-wave-header {
    background: #3a6995
}

.blue-wave-header__content {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 33px;
    padding: 10px 10px;
    text-transform: uppercase;

}

@keyframes hover {

    0%{
        background-position:10% 0%
    }
    50%{
        background-position:91% 100%
    }
    100%{
        background-position:10% 0%
    }

}

@keyframes leave {
    from {
        box-shadow: inset 300px 0 0 0.01px #fff;
        color: #1a416a;
    }
    to {
        box-shadow: inset 0 0 0 0.01px fff;
    }
}

@media (min-width: 768px) {
    .c-content-wrapper {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .c-content-wrapper {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .c-content-wrapper {
        width: 1170px;
    }
}