/**
color pallete
#0B0C10 - black
#1F2833 - dark grey
#C5C6C7 - light grey
#66FCF1 - bright cyan
#45A29E - dark cyan
 */

body {
    background-image: url("../files/background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color:#1F2833;
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
    body {
        background-image: url("../files/background-mobile.jpg");
    }
}

html, body, .container {
    height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
}

/* Basic */
body {
    font: 18px/23px "Cantarell", sans-serif;
    color: #ffffff;
}

h1 {
    color: #efecec;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
}

a {
    color: #ffffff;
}

p {
    margin: 0 0 15px 0;
}

strong {
    font-weight: 700;
}

.container {
    display: table;
    width: 100%;
}

.content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* Special */
.sub-title {
    margin: 50px auto;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
}

.my-name {
    color: #66FCF1;
}

.contacts {
    padding-right: 10px;
}

i {
    color: #66FCF1;
}

.button {
    display: inline-block;
    padding: 6px 10px;
    color: #cafaea;
    border: 1px solid #cafaea;
    border-radius: 3px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

#more-content {
    display: none;
}

/* Tooltip text */
.tooltip1 .tooltip1text{
    visibility: hidden;
    width: 220px;
    top: 60%;
    left: 50%;
    margin-left: -110px;
    background-color: #1F2833;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}

.tooltip2 .tooltip2text{
    visibility: hidden;
    width: 220px;
    top: 60%;
    left: 50%;
    margin-left: -110px;
    background-color: #1F2833;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}

.tooltip3 .tooltip3text {
    visibility: hidden;
    width: 220px;
    top: 60%;
    left: 50%;
    margin-left: -110px;
    background-color: #1F2833;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip1:hover .tooltip1text {
    visibility: visible;
}

.tooltip2:hover .tooltip2text {
    visibility: visible;
}

.tooltip3:hover .tooltip3text{
    visibility: visible;
}

/* Media Queries */
@media only screen and (max-width: 340px) {

    .container {
        position: relative;
        display: block;
        float: left;
        vertical-align: baseline;
        margin: 0 auto;
        padding: 80px 0 0 0;
    }

    #more-content {
        float: left;
        margin-right: 10px;

    }

    body h1 {
        font-size: 18px;
        line-height: 23px;
    }

    .content, blockquote {
        display: inline;
        margin: 0 auto;
        padding-top: 80px;
        vertical-align: baseline;
    }

    blockquote {
        width: 150px;
        margin: 15px auto;
        font-size: 16px;
        line-height: 21px;
        background-color: transparent;
    }

    blockquote cite {
        font-size: 14px;
        line-height: 19px;
    }

    .sub-title {
        font-size: 14px;
        line-height: 21px;
    }

    .button, p {
        max-width: 150px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 20px;
    }

    html, body, .container {
        height: auto;
    }
}