@charset "utf-8";

/* CSS Document */


/*
   .container {
            padding: 10px 15px;
        }
*/

.bg-grad {
    /*background-color: #22c8ff;*/
    background: linear-gradient(0deg, rgb(239, 38, 116) 0%, rgb(239, 38, 116) 0%, rgb(17, 21, 86) 65%, rgb(17, 21, 86) 65%);
    height: 850px;
}

.bg-grad:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: white;*/
    right: 0;
    background: url(/images/clouds.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.carousel-indicators {
    bottom: 0;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
}

.carousel-item {
    height: 400px;
    width: 100%;
}

.carousel-caption {
    text-align: left !important;
}

.carousel-caption h3 {}

.carousel .icon-container,
.carousel-caption button {
    background-color: #09c;
}

.carousel-caption h3 {
    padding: .5em;
}

.carousel .icon-container {
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    padding: 1em;
    /*text-align: center;*/
    border-radius: 50%;
}

.carousel-caption button {
    border-color: #00bfff;
    margin-top: 1em;
}


/* Animation delays */

.carousel-caption h3:first-child {
    animation-delay: 1s;
}

.carousel-caption h3:nth-child(2) {
    animation-delay: 2s;
}

.carousel-caption button {
    animation-delay: 3s;
}

h1 {
    /*text-align: center;*/
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
}

.p {
    padding-top: 125px;
    /*text-align: center;*/
}

.p a {
    text-decoration: underline;
}

.slide-btn1 {
    background-color: rgb(32, 51, 170) !important;
    border-radius: 30px 30px 30px 30px !important;
    outline: none;
    cursor: pointer;
}

.carousel-indicators li {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    background-color: rgba(32, 29, 84) !important;
    /*border: 1px solid #dcf2fa !important;
    border-style: inset !important;*/
}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background-color: #ee2175 !important;
}


/* @keyframes gbounce {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-25px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
} */

@keyframes gbounce {
    0% {
        transform: translate3d(0px, 0px, 0);
    }
    50% {
        transform: translate3d(0px, -25px, 0);
    }
    100% {
        transform: translate3d(0px, 0px, 0);
    }
}

.gbounce {
    animation: gbounce 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}