/*insert style here*/
body {
    padding-top: 0;
}

.title-section {
    padding: 70px 0 50px;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-image: url("/static/img/bg.jpg");
}

.title-text {
    margin-top: 40px;
    color: white;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9);
}

.title-text > h1 {
    font-size: 50px;
}

.newsletter-signup {
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 5px;
}

.newsletter-lable {
    color: rgb(20, 111, 99);
    font-size: 20px;
    font-weight: normal;
    /*text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9);*/
}

.event-container h2 {
    color: #146f63;
}

.feature-list {
    list-style: none;
    padding-left: 5px;
}

.feature-list > li {
    border-left: 3px solid lightblue;
    padding: 0 0 0 5px;
    margin-top: 10px;
}

.feature-list > li:hover {
    border-left-color: #146f63;
}

.feature-title {
    font-size: 17px;
}

.feature-list > li > a {
    color: black;
}

.index-hr {
    width: 80%;
}

.project {
    margin-bottom: 30px;
}

.project-title {
    text-align: right;
    font-size: 20px;
}

.left-bordered {
    border-left: solid 5px #146f63;
    padding: 3px 8px;
    margin-left: 4px;
}

.school-expose {
    display: block;
    border-left: 2px solid #66afe9;
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
    padding: 8px 8px 8px 12px;
    margin-bottom: 15px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.school-expose:hover {
    background-color: rgba(200, 200, 200, 0.25);
}

.school-expose .school-name {
    margin-top: 6px;
    color: black;
}

.partner-section {
    overflow: hidden;
}

[data-href] {
    cursor: pointer;
}

.slick-list {
    overflow-y: visible !important;
    padding: 30px 0 !important;
}

.partner-sponsor {
    border: 3px dashed #146f63;
    border-left: none;
    border-right: none;
}

.partner-sponsor img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.partner-sponsor img:hover,
.school-expose:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 10;

    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .school-expose > div {
        max-height: 150px;
    }

    .school-expose > div > img {
        margin-top: -40%;
    }

    .feature-list-cont {
        margin-top: 30px;
        margin-bottom: -35px;
    }
}

@media (min-width: 768px) {
    .navbar {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -webkit-transition: background-color 200ms linear;
        transition: background-color 200ms linear;
    }

    .navbar-default .navbar-nav > .active > a {
        background: rgba(150, 150, 150, .2);
    }

    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        background: transparent;
    }

    .navbar.scrolled {
        background-color: white !important;
    }

    .navbar:not(.scrolled) .navbar-nav > li > a {
        color: white;
    }

    .row-eq-height {
        display: flex;
        flex-wrap: wrap;
    }
}

.bg {
    background-color: rgba(255, 255, 255, .7);
}