img.grayscale {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+, IE10 */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
    -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}

img.grayscale:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
}

.csp-modal .card .card-body {
    padding: 1rem;
}

a.nav-link span {
    position: relative;
    height: 100%;
    display: inline-block;
}

a.nav-link span:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;

    height: 3px;
    background: #3f78e0;
}

a.nav-link:hover span:after {
    width: 100%;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    border: 1px solid rgba(63, 120, 224, 0.7);
}

.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
    border: 1px solid #3f78e0;
}

.owl-carousel .owl-nav button.owl-next.disabled, .owl-carousel .owl-nav button.owl-prev.disabled {
    display: none;
}

.fs-logo-sm {
    font-size: 0.7rem !important;
}

@media (min-width: 992px) { /* LG */
    .fs-logo-sm {
        font-size: 0.8rem !important;
    }

    .fs-lg-24 {
        font-size: 1.2rem !important;
    }

    .fs-lg-20 {
        font-size: 1rem !important;
    }

    .fs-lg-18 {
        font-size: 0.9rem !important;
    }

    .fs-lg-16 {
        font-size: 0.8rem !important;
    }

    .fs-lg-13 {
        font-size: 0.65rem !important;
    }

}

@media (min-width: 1199.98px) { /* XL */
    .fs-logo-sm {
        font-size: 1rem !important;
    }
}

@media (max-width: 991px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: -0.5rem;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -0.5rem;
    }
}



    /**/
.e-box-shadow {
    box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.4);
}

.text-dark-blue {
    color: #023e78 !important;
}

.text-blue {
    color: #295e93 !important;
}


.bg-dark-blue {
    background: #073b4c;
}

.wrapper.bg-dark-blue.angled.lower-end:after,
.wrapper.bg-dark-blue-dark.angled.upper-end:before {
    border-right-color: #073b4c;
}

.wrapper.bg-dark-blue.angled.lower-start:after,
.wrapper.bg-dark-blue.angled.upper-start:before {
    border-left-color: #073b4c;
}


.container a:hover {
 text-decoration: underline;
}

.arrow {
    opacity: 0;
    position: absolute;
    left: 20%;
    top: 60%;
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0);
}

.arrow-first {
    -webkit-animation: arrow-movement 2s ease-in-out infinite;
    animation: arrow-movement 2s ease-in-out infinite;
}

.arrow-second {
    -webkit-animation: arrow-movement 2s 1s ease-in-out infinite;
    animation: arrow-movement 2s 1s ease-in-out infinite;
}

.arrow:before,
.arrow:after {
    background: #295e93;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
}

.arrow:before {
    transform: rotate(45deg) translateX(-23%);
    transform-origin: top left;
}

.white-arrows .arrow:before,
.white-arrows .arrow:after {
    background: #ffffff;
}

.arrow:after {
    transform: rotate(-45deg) translateX(23%);
    transform-origin: top right;
}

@-webkit-keyframes arrow-movement {
    0% {
        opacity: 0;
        top: 0%;

    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes arrow-movement {
    0% {
        opacity: 0;
        top: 0%;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/**/

.main {
    height: 100%;
}