body {
    background: #fff;
    color: #666666;
    font-family: 'Ubuntu', sans-serif;
}
 
/* Header */

#header {
    padding: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header a {
    color: #fff;
}

#header a:hover {
    text-decoration: none;
}

#header.header-scrolled {
    transition: all 0.5s;
}

#header .logo {
    position: relative;
    height: 250px;
    left: calc(50% - 212px);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.61))
}

#header #logo img {
    margin-top: 11%;
}

#header h1 {
    color: #fff;
    font-size: 25px;
    line-height: 190%;
}

#header hr {
    border-color: rgba(255, 255, 255, 0.45);
    max-width: 50%;
}

@media (max-width: 768px) {
    
    #header #logo img {
        height: 230px;
        left: calc(50% - 195px);
        margin-top: 50%;
    }
    
    #header a {
        font-size: 18px;
    }
    
    #header h1 {
        font-size: 20px;
    }
}

/*---------------
# intro
---------------*/

#intro {
    display: table;
    width: 100%;
    height: 100vh;
    background: #000;
}

#intro .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-item::before {
    content: '';
/*    background-color: rgba(0, 143, 185, 0.25);*/
    background: linear-gradient(rgba(62, 177, 187, 0.3), rgba(249, 191, 20, 0.2));
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .carousel-background img {
    max-width: 100%;
}

#intro .carousel-content {
    text-align: center;
    width: 80%;
    max-width: 630px;
}

.mediatom {
    position: fixed;
    text-align: center;
    font-size: 9px;
    color: #fff;
    padding: 0 20px 20px 0;
    bottom: 0;
    right: 0;
    z-index: 9
}

.mediatom img {
    width: 34px;
    transition: all 0.3s;
}

.mediatom img:hover {
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .mediatom img {
        width: 30px;
    }
}