html {
    height: 100%;


}

h1,h2,h3,h4,h5{
    font-family: 'Source Sans Pro', sans-serif;
}

a{
    color: #c6c6c6;
}

#sidebar span{
    font-size: 12px;
}

a:hover{
    color: #858585;
}

section h1,
section#freelance h3{
    font-weight: 600;
}

p{
    font-family: 'Roboto', sans-serif;
}

.container p{
    text-align: justify;
}

section.small-section{
    font-family: 'Roboto', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

section#about-me{
    margin-bottom: 25px;
}

section#projects{
    margin-top: 25px;
}

body {
    height: 100%;
    overflow: hidden;  /*makes the body non-scrollable (we will add scrolling to the sidebar and main content containers)*/
    margin: 0px;  /*removes default style*/
    display: flex;  /*enables flex content for its children*/
    box-sizing: border-box;
}

.column {
    height: 100%;  /*allows both columns to span the full height of the browser window*/
    display: flex;
    flex-direction: column;  /*places the left and right headers above the bottom content*/
}

#sidebar {
    flex-shrink: 0;  /*makes sure that content is not cut off in a smaller browser window*/
    width: 300px;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #4f5d79;
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 0 20px 0px #4f5d79;
    box-shadow: 0 0 20px 0px #4f5d79;
    z-index: 0;
}

.navbar-nav{
    font-size: 20px;
    margin: 0 auto;
}

.navbar-nav li{
    margin: 5px 0;
}

.navbar-nav a{
    color: #d5d2d2;
}

.navbar-nav a:hover{
    color: #fff;
    text-decoration: none;
}

#sidebar img,
.navbar img{
    height: 200px;
    width: 200px;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    margin: 50px 30px 20px 30px;
}

.quote{
    padding: 20px;
}

.fa-quote-right,
.fa-quote-left{
    margin: 0 10px;
    font-size: 30px !important;
}

.navbar img{
    height: 75px;
    width: 75px;
    margin: 0;
}

hr{
    border: 0.5px solid rgb(213, 213, 213);
    width: 78%
}

.top-left {
    flex-grow: 9;
    width: 100%;
}

.top-right {
    flex-shrink: 0;
    padding: 0;
}

ul {
    display: inline-flex;
    list-style: none;
}

.bottom {
    flex-grow: 1;  /*ensures that the container will take up the full height of the parent container*/
    overflow-y: auto;  /*adds scroll to this container*/
    width: 100%;
}

.content{
    background-color: #66799e;
    background-image: url("Resources/Vendors/60-lines.png");
    background-attachment: fixed;
}

.social-media ul{
    padding: 0;
}

.social-media .fa{
    font-size: 40px;
    margin: 5px;
}

.social-media a{
    color: #7d95c4;
}

.social-media a#twitter:hover{
    color: #38A1F3;
}

.social-media a#linkedin:hover{
    color: #0077B5;
}

.social-media a#github:hover{
    color: #fff;
}

.social-media a#rss:hover{
    color: #f26522;
}

.social-media a:hover{
    text-decoration: none;
}

#right{
    width: 100%;
    background: #66799e;
    color: #eaf1ff;
    text-align: center;
}

.content{
    display: inline-flex;
    flex-direction: column;
    padding: 50px 0 0 0;
}

hr{
     border: 0;
     height: 1px;
     background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
     background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
     background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
}

.projects{
    display: flex;
    flex-flow: wrap;
    justify-content: center;

}

.project{
    background: #4a5f87;
    background-image: url("Resources/images/tmp.png");
    width: 250px;
    height: 250px;
    background-size: contain;
    padding: 200px 0 0 0;
    overflow: hidden;
    margin: 10px;
}

.example-landscaping{
    background-image: url("Resources/images/example.png");
}

.sorting{
    background-image: url("Resources/images/sorting.png");
}

.project-image{
    width: 200px;
}

.project-detail{
    padding: 5px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.5);
}


/* Standard syntax */
@keyframes example {
  0% {
      height: 0px;
      padding: 0;
  }

  50% {
      height: 5px;
      padding: 0;
  }

  100% {
      height: 150px;
      padding: 35px;
  }
}

/* Standard syntax */
/* @keyframes test2 {
  0% {
      height: 0px;
      padding: 0;
  }

  50% {
      height: 5px;
  }

  100% {
      height: 85px;
      padding: 8px 16px;
  }
} */

#freelance{
    color: #2c3850;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
    overflow: hidden;
    height: 150px;
    padding: 35px;
    animation-name: example;
    animation-duration: 2s;
}



.no-margin{
    margin: 0 auto;
}

.btn.btn-success{
    background: rgba(79, 93, 121,0.5);
    border: solid 1px rgb(38, 50, 56);
}

.btn.btn-success:hover{
    background: rgb(79, 93, 121);
}


.media-query-indicator{
    height: 10px;
    width: 10px;
    background: #fff;
    position: absolute;
    z-index: 1;
}

.media-query-indicator.one{
    top: 5%;
    left: 5%;
}

.media-query-indicator.two{
    top: 95%;
    left: 95%;
}

.media-query-indicator.three{
    top: 95%;
    left: 5%;
}

.media-query-indicator.four{
    top: 5%;
    left: 95%;
}

.top-right nav{
    display: none;
}

.navbar{
    -webkit-box-shadow: 0 0 20px 0px #4f5d79;
    box-shadow: 0 0 20px 0px #4f5d79;
    background-color: #4f5d79;
}

.navbar-toggler{
    background: #66799e;
}

.navbar-toggler-icon{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

/* Form Formatting */
label{
    width: 100%;
    text-align: left;
}

.form-group{
    width: 100%;
    margin: 0 0 10px 0;
}

.form-group input,
.form-group textarea{
    background-color: rgba(130, 150, 187, 1);
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus{
    background-color: rgba(153, 172, 207, 1);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: #dbe9ff;
}

.form-row{
    padding-left: 0px;
    padding-right: 0px;
}

form .btn.btn-form{
    background-color: #4f5d79;
    border: #fff 1px solid;
    width: 100%
}

form .btn.btn-form:hover{
    background-color: #556483;
}

form .btn.btn-form:active{
    background-color: #3e4b65 !important;
}

form .btn.btn-form:focus{
    box-shadow: none !important;
}

.form-group input:focus,
.form-group textarea:focus,
form .btn.btn-form:focus{
    border-color: #b0b0b0 !important;
    box-shadow: none;
    /* box-shadow: 0 0 0 .2rem rgba(79,93,121,.25); */
}

/* Standard syntax */
/* @keyframes sidebar-done{
  0% {
      width: 300px;
  }

  100% {
      width: 0px;
  }
} */

.thank-you{
    background: rgba(79,93,121,0.5);
    height: 271px;
}

.thank-you{
    padding: 116.3px 0;
}

footer{
    background-color: #4f5d79;
    margin-top: 25px;
    padding: 10px;
}

.copyright{
    margin: 0;
}

.skill .skill-title{
    display: flex;
}

.skill .skill-title h3{
    align-self: flex-end;
}

.skill .skill-image{
    margin: 0;
    background: #4f5d79;
    width: 50px;
    height: 50px;
    padding: 10px;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    margin-right: 10px;
}

.skill .right h3{
    margin-left: auto;
}

.skill .right .skill-image{
    margin: 0 0 0 10px;
}

.skill img{
    width: 30px;
}

#about-me-image{
    width: 250px;
    float: left;
    margin: 0 15px 5px 0;
}


/* Extra large devices (large desktops) */
/* No media query since the extra-large breakpoint has no upper bound on its width */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .media-query-indicator{
        background: #ff009b;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .media-query-indicator{
        background: #11ff00;
    }

    #freelance h3{
        width: 320px;
        margin: 0 auto;
    }

    #freelance{
        padding: 17.5px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .media-query-indicator{
        background: #fffc00;
    }

    .top-right nav{
        display: flex;
        overflow: hidden;
        animation-name: test2;
        animation-duration: 2s;
    }

    #sidebar{
        overflow: hidden;
        animation-name: sidebar-done;
        animation-duration: 2s;
        width: 0px;
        white-space:nowrap;
    }

}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .media-query-indicator{
        background: #ff0000;
    }
}
