.main-container {
    padding: 10px 15px;
}
.carousel-indicators {
    position: absolute;
    bottom: 0px;
    left: 50%;
    z-index: 15;
    width: 100%;
    padding-left: 0;
    margin-left: -50%;
    text-align: center;
    list-style: none;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px dashed #fff;
    margin-bottom: 0px;
}
.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-color: #fff;
}
.carousel-indicators li.active {
    margin: 1px;
    background-color: #cccccc;
    border: 1px solid #cccccc;
}
.carousel-control.right,
.carousel-control.left {
    background-image: none;
}
.carousel .item {
    min-height: 600px; 
    height: 100%;
    width:100%; 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.carousel-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    right: auto;
    padding: 0;
    margin: 0;
    bottom: auto;
}

.carousel-caption h3 {
    font-size: 40px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0px 0px 4px #fff;
}
.carousel-caption p {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}
.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: #005729;
    margin-top: 1em; 
    border-radius: 25px;
    background-color: #005729;
    font-size: 18px;
    font-weight: lighter;
    text-transform: uppercase;
    padding: 10px 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none !important;
    color: rgba(255, 255, 255, 0.5);
}
.carousel-caption button:hover, .carousel-caption button:focus, .carousel-caption button:active, .carousel-caption button:visited {
    color: #fff !important;
    background-color: #005729 !important;
    border-color: #005729;
    outline: none !important;
}

/* Animation delays */
.carousel-caption h3:first-child {
    animation-delay: 1s;
}
.carousel-caption p {
    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;
}

/* @media */

@media screen and (max-width: 767px) {
    .carousel .item {
        min-height: 300px;
    }
    .carousel-caption h3 {
        font-size: 24px;
    }
    .carousel-caption p {
        font-size: 18px;
    }
    .carousel-caption button {
        font-size: 14px;
        padding: 5px 10px;
        margin-top: 5px;
    }
    .carousel-indicators {
        border-top: none;
    }
}