* {
    margin: 0;
    padding: 0;
}


html, body {
    width:100%;
    height:100%;
    color: #525c65;
    font-size: 16px;
    font-family: "Open Sans",sans-serif;
    line-height: 1.5rem;
    -webkit-font-smoothing: antialiased;
}

.container-fluid {
    padding:0;
}

header {
    /* background-color: yellow; */
    height: 6rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 300;
}

h3 {
    font-size: 1.75rem;
    line-height: 2.25rem;
    color: #2d3d4a;
    margin-bottom: 1.5rem;
}

h5 {
    font-size: 1.125rem;
    line-height: 2rem;
}

p {
    font-size:16px;
    font-weight:400;
    /* height:56px; */
    line-height:28px;
}

.navbar {
    width:100%;
}
#navbarItem ul{
    float:right;
}

#navbarItem ul li{
    margin-right:20px;
}

.banner {
    width:100%;
    height: auto;
    min-height: 650px;
    border-radius: 5px;
    /* background-image: url('../images/banner.jpg'); */
    /* background-size:70%;
    background-position: 500px;
    background-repeat:no-repeat; */
    background-size: cover;
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,.5);
    position:relative;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding:10px 35px;
    box-sizing: border-box;
}

.banner:before{
    position: absolute;
    content:" ";
    top:0;
    left:0;
    width:100%;
    height:100%;
    /* background-color:rgb(26, 26, 44); */
    background-color:rgba(24, 114, 122, 0.8);
    opacity: 0.6;
    z-index:0;
    border-radius: 5px;
}

.banner-img {
    width:100%;
    height:100%;
    /* background-color:red; */
}

.banner * {
    position: relative;
    /* hack */
}

.content {
    width: 100%;
    height: 100%;
    text-align: center;
    color:white;
}

.content-small {
    padding-top: 4.5rem;
}

.content p {
    max-width: 48.75rem!important;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    color: #fff;
    background-color: #02b3e4;
}

.full-section {
    width:100%;
    height:auto;
    min-height:200px;
    background-color: #fafbfc;
    border-bottom: 1px solid #acb2b8;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.blockquote {
    max-width: 48.75rem!important;
}

.blockquote footer {
    margin-top:20px;
}

.title-text {
    text-transform: uppercase;
    color: #2e3d49;
    -webkit-font-smoothing: antialiased;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.desc-text {
    font-size: 14px;
    margin-bottom: 1.5rem;
    line-height: 1.75rem;
}

.content-row {
    height:500px;
}


.course {
    background-color:rgba(26,184,199,0.2);
    padding: 35px 30px;
    box-sizing:border-box;
    margin: 30px 0;
}

.course-outline {
    width:100%;
    height:auto;
    min-height:300px;
    background-color:white;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    padding:50px;
}

.line {
    width:100%;
    height:1px;
    background-color: rgba(0,0,0,0.1);
    margin: 25px 0;
}



.profile-holder {
    margin:50px 30px;
}

.profile {
    width:150px;
    height:150px;
    border-radius: 50%;
}

.profile-pic h6 {
    margin:20px 0;
}

footer {
    background-color:rgba(26,184,199,0.2);
}

.social-icons {
    text-align: right;
}

.social-icons a {
    width:25px;
    height:25px;
}

.social-icons a i {
    font-size:18px;
}

.signup-content {
    /* background-color: skyblue; */
    width:100%;   
    height:500px;
    box-shadow: 5px 5px 25px 0 rgba(46,61,73,.3);
    border-radius:5px;
    display:flex;
    flex-direction: row;
    justify-content:space-around;
    align-items: center;
    padding:50px;
    margin:50px 0;
}

.form-group input {
    border:0;
    width:100%;
    border-bottom:1px solid rgba(11, 104, 112,0.4)
}

.form-group input:focus {
    border:0;
    outline:0;
}

.form-group input[type="submit"] {
    background-color:skyblue;
    border:none;
    color:white;
    padding:15px ;
    border-radius: 35px;
}

.footer-copyright {
    font-size:10px;
}


@media only screen and (max-width: 768px) {
    .sm-full-container {
        width:100%;
        margin:0;
        padding:0;
    }

    p {
        font-size:16px;
        font-weight:400;
        line-height:28px;
    }

    /* .banner {

    } */

    .content-row {
        height:auto;
        padding-bottom:100px;
    }

    figure img {
        width:200px;
    }
}