/* CSS Document */
@charset "UTF-8";

body {
    background-color: #C2CFD7;
    font-family: "ubuntu";
}

#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: visible;
    background: #C2CFD7 url('/img/preloader-mountains.gif') no-repeat center center;
}

.banner_photo img {
    width: 100%;
    background-image: url(/img/whitewater-rafting-elk-river-eagira.jpg);
    height: auto;
    background-position: center;
}

#navlist {
    background-color: #115D7A;
    top: -60px;
    width: 100%;
    display: inline-block;
    transition: top 0.3s;
    font-family: "ubuntu";
    position: fixed;
    margin: 0 auto;
    clear: left;
    height: auto;
    z-index: 0;
    text-align: center;
}

#navlist a {
    display: inline-flex;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 15px;
    overflow: hidden;
}

#navlist a:hover {
    background-color: #849EAE;
    color: white;
}

.page-title {
    font-size: 26px;
    color: white;
    text-align: center;
    position: relative;
    background-color: #115D7A;
    margin-top:-5vh;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.skill {
    margin-bottom: 20px;
    display: inline-block;
    width: 48%;
    box-sizing: border-box;
    padding-right: 5px;
}

.skill:nth-child(even) {
    padding-right: 0;
}

.skill-name {
    margin-bottom: 5px;
}

.skill-bar {
    height: 20px;
    background-color: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
}

.skill-level {
    height: 20px;
    background-color: #EE923D;
    text-align: right;
    line-height: 20px;
    font-size: 12px;
    color: white;
    padding-right: 5px;
}

.tagcloud {
    font-size: 20px;
    font-family: "Oxygen";
    margin-top: 20px;
    margin-bottom: -20px;
    width: 100%;
    color: #115D7A;
}

.tagcloud--item {
    padding: 2px 4px;
    background-color: transparent;
    border: 1px solid transparent;
    text-align: center;
    cursor: default;
}

.tagcloud--item:hover {
    background-color: rgba(231, 241, 245, 0.686);
    border-radius: 10px;
    opacity: 1 !important;
    z-index: 100 !important;
}

.text {
    font-size: 20px;
    text-align: center;
    display: block;
    position: relative;
    font-family: 'ubuntu', serif;
}

.back-button {
    font-size: 20px;
    text-align: left;
    display: block;
    position: relative;
    font-family: 'ubuntu', serif;
    padding-left: 15%;
    padding-bottom: 5%;
}

.back-button a {
    display: inline-block;
    padding: 5px 0;
    position: relative;
    background-clip: text;
    transition: all 0.3s ease-in-out;
    font-family: 'ubuntu', serif;
    text-decoration: none;
    color: white;

}

.back-button a:before {
    content: '';
    background: #849EAE;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
    font-family: 'ubuntu', serif;
    text-decoration: none;
}

.back-button a:hover {
    background-position: 0;
    font-family: 'ubuntu', serif;
    text-decoration: none;
    color: #115D7A;
}

.back-button a:hover::before {
    width: 100%;
    font-family: 'ubuntu', serif;
    text-decoration: none;
}

footer {
    font-family: "ubuntu";
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -100px;
    text-decoration: none;
}

footer a {
    font-family: "ubuntu";
    display: inline;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    text-decoration: none;
    color: black;
}

@media (max-width: 767px) {

    .page-title {
        font-size: 26px;
        color: white;
        text-align: center;
        position: relative;
        background-color: #115D7A;
        margin-top: -8%;
    }

    .banner_photo img {
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .column {
        display: block;
        justify-content: center;
        align-items: center;
    }

    .skill {
        margin-bottom: 20px;
        display: inline-block;
        width: 95%;
        box-sizing: border-box;
        padding-right: 5px;
    }

    .tagcloud {
        font-size: 20px;
        font-family: "Oxygen";
        margin-top: 20px;
        margin-bottom: -20px;
        width: 100%;
        color: #115D7A;
        display: none;
    }
}
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #navlist {
    margin-bottom: 20px;
}
}