
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    z-index: 1000;
}

.spinner {
    width: 40px;
    height: 40px;
    background-color: #fff;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.spinnerc {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#top-logo {
    height: 100px;
    float: left;
    padding: 5px 0 0 0;
}

#logo-con {
    float: left;
}

.tagline {
    font-weight: 900;
    font-size: x-small;
}

.balloon {
    /* width: 738px;
  margin: 0 auto;
  padding-top: 30px; */
    position: relative;
}

.balloon > div {
    width: 90px;
    height: 100px;
    background: rgba(182, 15, 97, 0.9);
    border-radius: 0;
    border-radius: 80% 80% 80% 80%;
    margin: 0 auto;
    position: absolute;
    padding: 10px;
    box-shadow: inset 17px 7px 10px rgba(182, 15, 97, 0.9);
    -webkit-transform-origin: bottom center;
}

.balloon > div:nth-child(1) {
    background: rgba(242, 194, 58, 0.9);
    right: 0;
    box-shadow: inset 10px 10px 10px rgba(234, 177, 15, 0.9);
    -webkit-animation: balloon1 6s ease-in-out infinite;
    -moz-animation: balloon1 6s ease-in-out infinite;
    -o-animation: balloon1 6s ease-in-out infinite;
    animation: balloon1 6s ease-in-out infinite;
}

.balloon > div:nth-child(1):before {
    color: rgba(234, 177, 15, 0.9);
}

.balloon > div:nth-child(2) {
    right: 120px;
    -webkit-animation: balloon2 6s ease-in-out infinite;
    -moz-animation: balloon2 6s ease-in-out infinite;
    -o-animation: balloon2 6s ease-in-out infinite;
    animation: balloon2 6s ease-in-out infinite;
}

.balloon > div:before {
    color: rgba(182, 15, 97, 0.9);
    position: absolute;
    bottom: -11px;
    left: 52px;
    content: "▲";
    font-size: 1em;
}

.balloon > div > span {
    font-size: 40px;
    color: white;
    position: relative;
    left: 50%;
    margin-left: -15px;
}

.balloon > div > span > a {
    color: white;
}

/*BALLOON 1 4*/
@-webkit-keyframes balloon1 {
    0%,
    100% {
        -webkit-transform: translateY(0) rotate(-6deg);
    }
    50% {
        -webkit-transform: translateY(-20px) rotate(8deg);
    }
}

@-moz-keyframes balloon1 {
    0%,
    100% {
        -moz-transform: translateY(0) rotate(-6deg);
    }
    50% {
        -moz-transform: translateY(-20px) rotate(8deg);
    }
}

@-o-keyframes balloon1 {
    0%,
    100% {
        -o-transform: translateY(0) rotate(-6deg);
    }
    50% {
        -o-transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes balloon1 {
    0%,
    100% {
        transform: translateY(0) rotate(-6deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* BAllOON 2 5*/
@-webkit-keyframes balloon2 {
    0%,
    100% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
    }
}

@-moz-keyframes balloon2 {
    0%,
    100% {
        -moz-transform: translateY(0);
    }
    50% {
        -moz-transform: translateY(-30px);
    }
}

@-o-keyframes balloon2 {
    0%,
    100% {
        -o-transform: translateY(0);
    }
    50% {
        -o-transform: translateY(-30px);
    }
}

@keyframes balloon2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* BAllOON 0*/

#nav-carousel {
    position: relative;
    width: 100%;
    border: 5px solid #ffffff69;
    border-radius: 10px;
}

.carousel {
    height: 30vh;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100% !important;
    cursor: grab;
}

.wave1,
.wave2 {
    height: 30px;
    width: 100%;
    z-index: 12;
    left: 0;
    bottom: 0;
}

.wave1 {
    margin-top: -25px;
    background: url(../img/wave1.png) 0 0 repeat-x;
    -webkit-animation: wave-animation1 8.7s infinite linear; /* Safari 4+ */
    -moz-animation: wave-animation1 8.7s infinite linear; /* Fx 5+ */
    -o-animation: wave-animation1 8.7s infinite linear; /* Opera 12+ */
    animation: wave-animation1 8.7s infinite linear; /* IE 10+ */
}

.wave2 {
    -webkit-animation: wave-animation1 6.3s infinite linear; /* Safari 4+ */
    -moz-animation: wave-animation1 6.3s infinite linear; /* Fx 5+ */
    -o-animation: wave-animation1 6.3s infinite linear; /* Opera 12+ */
    animation: wave-animation1 6.3s infinite linear; /* IE 10+ */
}

@-webkit-keyframes wave-animation1 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1601px 0;
    }
}

@-moz-keyframes wave-animation1 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1601px 0;
    }
}

@-o-keyframes wave-animation1 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1601px 0;
    }
}

@keyframes wave-animation1 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1601px 0;
    }
}

.fill {
    background: #ffffff;
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    min-height: 100vh;
}

.carousel-indicators li {
    margin: 0 !important;
}

.carousel-control-next,
.carousel-control-prev {
    justify-content: left;
}

.carousel-control-next,
.carousel-control-next {
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .carousel {
        height: 65vh;
    }

    .carousel-caption {
        bottom: 15%;
    }

    .carousel-caption h5 {
        font-size: xx-large;
    }
}

.contact-item {
    margin-top: 50px;
}

.contact-item .fa {
    font-size: 25px;
    color: white;
}


