body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #4e5154;
    width: 100%;
}

p {
    color: #4e5154;
}

.large-paragraph {
    font-size: 22px;
}

.medium-paragraph {
    font-size: 18px;
}

a {
    font-size: 18px;
}

h1 {
    font-size: 40px !important;
}

h2 .serif{
    font-size: 32px;
    font-family: 'Cinzel', serif;
    color: #4e5154;
}

h2 .sans-serif{
    font-size: 32px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #4e5154;
}

h3 {
    font-size: 24px;
    font-family: 'Cinzel', serif;
    color: #4e5154;
    padding-top: 0;
    margin-top: 0;
    text-indent: 10px;
}

h4 {
    font-size: 18px;
}

.dark-header {
    color: #c4d74b;
    font-family: 'Cinzel', serif;
    background-color: #4e5154;
}

.green-header {
    color: #c4d74b;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
}


/*font-family: 'Cinzel', serif;*/

.jumbotron {
    background-color: #e8e8e4;
    font-family: 'Source Sans Pro', sans-serif;
}

.container-fluid {
    padding: 50px 0px 50px 0px;
    margin-right: 0;
}

.nopad {
    padding: 0px 0px 0px 0px;
    margin-top: 0;
    margin-bottom: 0;
}

img {
    width: 100%;
    height: auto;
}

.col-md-4 {
    padding-left: 0;
    padding-right: 0;
}

.thumbnail {
    border: none;
    border-radius: 35;
    border-style: solid;
}

.thumbnail img {
    width: 100%;
    height: auto;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
}

.carousel {
    background: #4e5154;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none;
    color: #c4d74b;
}

.carousel-indicators li {
    border-color: #c4d74b;
}

.carousel-indicators li.active {
    background-color: #c4d74b;
}

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
  right: 20px;  
}

.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
  left: 20px; 
}

.item h4 {
    font-size: 24px;
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    line-height: 1.375em;
    font-weight: 400;
    font-style: italic;
    margin: 100px 50px;
}

.item span {
    font-style: normal;
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    background-color: #4e5154;
    bottom: 20px;
    right: 20px;
    display: none;
}

.navbar {
    margin-bottom: 0;
    /* IE8 and below */
    background: rgb(78, 81, 84);
    /* all other browsers */
    background: rgbA(78, 81, 84, 0.5);
    z-index: 9999;
    border: 0;
    font-size: 12px !important;
    line-height: 1.42857143 !important;
    letter-spacing: 4px;
    border-radius: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

.navbar li a,
.navbar .navbar-brand {
    color: #fff !important;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
    color: #c4d74b !important;
    /*      background-color: #fff !important;*/
}

.navbar-default .navbar-toggle {
    border-color: transparent;
    color: #fff !important;
}

footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #c4d74b;
}

.fadeanim {
    -webkit-animation-name: fadein;
    /* Chrome, Safari, Opera */
    -webkit-animation-duration: 4s;
    /* Chrome, Safari, Opera */
    animation-name: fadein;
    /*    animation-duration: 5s;*/
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slideanim {
    visibility: hidden;
}

.slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 0.7s;
    -webkit-animation-duration: 0.7s;
    visibility: visible;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

@media screen and (max-width: 768px) {
    .col-sm-4 {
        text-align: center;
        margin: 25px 0;
    }
    .btn-lg {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 150px;
    }
}