#vegas-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
}

#vegas-slider .vegas-control__btn {
    position: absolute;
    top: 50%;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    z-index: 3;
}

#vegas-slider .vegas-control__btn:hover {
    color: #f1cf69;
}

#vegas-control__prev {
    left: -14px;
}

#vegas-control__next {
    right: -14px;
}

#vegas-slider .vegas-dots {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    line-height: 0;
    text-align: center;
    z-index: 3;
}

#vegas-slider .vegas-dots a {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    cursor: pointer;
    background-color: #f1cf69;
    box-shadow: 0 0 0 0 #4a8b71 inset;
    border-radius: 50%;
    -webkit-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -ms-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#vegas-slider .vegas-dots a:hover,
#vegas-slider .vegas-dots a.active {
    box-shadow: 0 0 0 8px #4a8b71 inset;
}

#vegas-slider .vegas-dots a.active {
    cursor: default;
}

#start-screen_content-container {
    position: relative;
    height: 100%
}

.start-screen__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    color: #fff;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.start-screen__content.active {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .5s ease-in-out .2s, visibility .3s ease-in-out;
    -moz-transition: opacity .5s ease-in-out .2s, visibility .3s ease-in-out;
    -ms-transition: opacity .5s ease-in-out .2s, visibility .3s ease-in-out;
    -o-transition: opacity .5s ease-in-out .2s, visibility .3s ease-in-out;
    transition: opacity .5s ease-in-out .2s, visibility .3s ease-in-out;
}

.start-screen__content .title,
.start-screen__content .subtitle {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.start-screen__content .title {
    line-height: 1;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.start-screen__content .subtitle {
    line-height: 1.2;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 10px;
}

.start-screen__content p {
    margin: 20px;
}

.start-screen__content p:first-child {
    margin-top: 0;
}

.start-screen__content p:last-child {
    margin-bottom: 0;
}

.start-screen__content .custom-btn.primary {
    background-color: #f1cf69;
    color: #504935;
}

.start-screen__content .custom-btn.primary:hover,
.start-screen__content .custom-btn.primary:focus {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

/* first slide */
.start-screen__content-first {}

.start-screen__content-first .title {}

.start-screen__content-first .subtitle {}

/* second slide */
.start-screen__content-second {}

.start-screen__content-second .title {}

.start-screen__content-second .subtitle {}

/* third slide */
.start-screen__content-third {}

.start-screen__content-third .title {}

.start-screen__content-third .subtitle {}

/* fourth slide */
.start-screen__content-fourth {}

.start-screen__content-fourth .title {
    color: #282828;
}

.start-screen__content-fourth .subtitle {}

@media only screen and (min-width: 576px) {
    #vegas-control__prev {
        left: 0px;
    }

    #vegas-control__next {
        right: 0px;
    }

    .start-screen__content {
        text-align: inherit;
    }

    .start-screen__content .title {
        line-height: 0.8;
        font-size: 80px;
        letter-spacing: 10px;
    }

    .start-screen__content .subtitle {
        font-size: 20px;
    }

    .start-screen__content p {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .start-screen__content-third .title {
        line-height: 0.6;
    }
}

@media only screen and (min-width: 768px) {
    #vegas-slider .vegas-dots {
        bottom: 30px;
    }

    .start-screen__content {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .start-screen__content .title {
        font-size: 110px;
        letter-spacing: 12px;
    }

    .start-screen__content .subtitle {
        font-size: 25px;
    }
}

@media only screen and (min-width: 992px) {
    #vegas-slider .vegas-dots {
        bottom: 40px;
    }

    .start-screen__content {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .start-screen__content .title {
        font-size: 130px;
        letter-spacing: 14px;
    }
}

@media only screen and (min-width: 1200px) {
    .start-screen__content .title {
        font-size: 140px;
        letter-spacing: 16px;
    }
}