@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
.loader_bg {
    position: fixed;
    z-index: 99999;
    background: #e6eaee;
    width: 100%;
    height: 100%;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}

.loader::before,
.loader::after {
    content: '';
    border: 1em solid #435ebe;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader::before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #eee;
    min-height: 100vh;
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

#carousel .carousel-item.boat {
    background-image: url("1.jpg");
}

#carousel .carousel-item.sea {
    background-image: url("2.jpg");
}

#carousel .carousel-item.river {
    background-image: url("3.jpg");
}

#carousel .carousel-item.elektr {
    background-image: url("4.jpg");
}

#carousel .carousel-item.traver {
    background-image: url("5.jpg");
}

#carousel .carousel-item {
    height: 100vh;
    width: 100%;
    min-height: 350px;
    background: no-repeat center center scroll;
    background-size: cover;
}

#carousel .carousel-inner .carousel-item {
    transition: -webkit-transform 2s ease;
    transition: transform 2s ease;
    transition: transform 2s ease, -webkit-transform 2s ease;
}

#carousel .carousel-item .caption {
    /*background: rgba(0, 0, 0, 0.5);*/
    text-align: center;
    padding: 40px;
    color: white;
    animation-duration: 1s;
    animation-delay: 2s;
}

#carousel .caption h2 {
    animation-duration: 1s;
    animation-delay: 2s;
}

#carousel .caption p {
    animation-duration: 1s;
    animation-delay: 2.2s;
}

#carousel .caption a {
    animation-duration: 1s;
    animation-delay: 2.4s;
}

.delicious-btn {
    display: inline-block;
    min-width: 160px;
    height: 60px;
    color: #fff;
    border: none;
    border-left: 3px solid #435ebe;
    border-radius: 30px;
    padding: 0 30px;
    font-size: 16px;
    line-height: 58px;
    font-weight: 600;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-transform: capitalize;
    background: #435ebe;
}

.delicious-btn:hover,
.delicious-btn:active,
.delicious-btn:focus {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #435ebe;
    border-color: #435ebe
}