@import url('https://fonts.googleapis.com/css?family=Open+Sans|Lato:300,400&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Mina:400&subset=latin-ext');

* { box-sizing: border-box; }
body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    cursor: default;
}
h1, h2, h3, h4, h5, h6 { text-align: center; margin: 0; }
h1 { font-size: 1.5em; }
p { margin: 0; }
a { cursor: pointer; }
main { padding-top: 0; overflow: hidden; }
.clear { clear: both; }
.col { width: 100%; padding: 3px; float: left; margin-top: 5px; }

/* HEADER */
header {
    width: 100%;
}
header #top-h {
    height: 65px;
    display: none;
    overflow: hidden;
}
header #logo a {
    float: left;
    margin-left: 7%;
    width: 283px;
    height: 60px;
    background-image: url(../img/prac2k_logo-mini.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
header #title {
    line-height: 60px;
    float: left;
    margin-left: 15px;
    font-size: 40px;
    cursor: default;
}
#t2k-small {
    letter-spacing: -1px;
    color: #F8C300;
    font-weight: bold;
}
header nav.top {
    width: 100%;
    -webkit-box-shadow: 0px 5px 24px -2px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 24px -2px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 24px -2px rgba(0,0,0,0.5);
    background: black;
    color: #fff;
    font-size: 1.2em;
    z-index: 100;
    position: fixed;
}
header nav.top ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
header nav.top li {
    width: 100%;
    color: #fff;
    line-height: 50px;
    font-weight: bold;
}
header nav.top li#burger-tab {
    text-align: right;
    border-bottom: 2px solid #F89500;
    font-size: 1.5em;
    padding: 4px 7px;
    height: 50px;
}
header nav.top #burger-title {
    float: left;
    margin: 0 7px;
    line-height: 40px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    font-variant: small-caps;
    cursor: default;
}
#burger-logo {
    width: 172px;
    height: 40px;
    display: inline-block;
    float: left;
    background-image: url(../img/prac2k_logo-mini-m.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
header nav.top #burger-icon {
    float: right;
    margin: 4px 7px;
    width: 32px;
    height: 32px;
    background-image: url(../img/menu.png);
    background-repeat: no-repeat;
    background-position: center center;
}
header #media {
    display: none;
}
header nav.top #exp-menu {
    transition: max-height 0.2s ease-out;
    max-height: 0;
    overflow: hidden;
}
header nav.top a {
    display: block;
    line-height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
}
header nav.top a:hover {
    background: #F8C300;
}
header nav.top li.nav-tab.active {
    background: #F8C300;
}
header nav.top li.nav-tab.active a {
    color: #000;
}

/* MAIN */
main {
    padding-top: 50px;
}

/* SECTIONS */
section:first-child {
    padding-top: 20px;
}
section {
    width: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
section article {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 600px;
    margin: auto;
    font-size: 1.2em;
}
section article h1{
    font-family: 'Mina';
}
section article p {
    margin-top: 8px;
}
section header {
    width: 100%;
    line-height: 60px;
    color: #fff;
    background: #000;
}
section header h1 {
    font-size: 1.8em;
}

/* SLIDERS */
section.sl1 {
    height: calc(100vh - 50px);
    width: 100%;
    color: #000;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg.jpg);
    background-position: center center;
}
section.sl1 article {
    height: 100%;
    width: 100%;
    position: relative;
}
section.sl2 {
    padding-bottom: 0;
    width: 100%;
    margin: 30px 0;
}
section.sl2 article {
    max-width: 100%;
    padding: 0;
}
section.sl3 {
    text-align: center;
    font-family: 'Mina';
}

section.gallery {
    width: 100%;
    font-family: 'Mina';
}
section.gallery article {
    max-width: 100%;
    padding: 0;
}

/* FOOTER */
footer {
    -webkit-box-shadow: inset 0px 17px 35px -15px rgba(0,0,0,0.7);
    -moz-box-shadow: inset 0px 17px 35px -15px rgba(0,0,0,0.7);
    box-shadow: inset 0px 17px 35px -15px rgba(0,0,0,0.7);
    padding-top: 20px;
    text-align: center;
    min-height: 100px;
}
#footer-links {
    margin-top: 15px;
    font-size: 0.9em;
}
#footer-links a {
    margin-left: 3px;
    margin-right: 3px;
    color: #666666;
    text-decoration: none;
}

/* OTHER */
/* OVERLAY */
#overlay {
    display: none;
    width: 100%;
    height: 100%;
    cursor: default;
    background: rgba(150, 150, 150, 0.6);
    position: fixed;
    z-index: 1000!important;
}
#overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}
/* CONTACT */
#contact {
    width: 100%;
}
#contact h3,
#contact h4 {
    margin: 20px 0 0 0;
}
#contact h3:first-child {
    margin: 0;
}
#contact p {
    margin: 0 0 0 10px;
}
#contact h3,
#contact h4,
#contact p {
    text-align: center;
}
.mail {
    text-decoration: none;
    color: #666;
    font-weight: bold;
}
#contact .col {
    margin-bottom: 15px;
}
#map {
    margin: auto;
    height: 400px;
    width: 100%;
}
#map-cont {
    width: 100%;
}

/* GALLERY */
#gallery-st {
    background: #000;
}
#gallery-st .gal-item {
    margin: 2px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-width: 240px;
    width: 100%;
    height: 300px;
    float: left;
}

#gallery {
    width: 100%;
    background: #000;
}
#gallery-inner {
    width: 100%;
    margin: auto;
    padding: 3px 0 3px 0;
}
#gallery .gal-cat {
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3px;
}
#gallery .gal-cat:last-child {
    margin-bottom: 0;
}
#gallery .gal-row {
    font-size: 0;
    text-align: center;
}
#gallery .gal-row:last-child {
    margin-bottom: 0;
}
#gallery .gal-img {
    margin-right: 3px;
    display: inline-block;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: 3px;
}
#gallery .gal-img:last-child {
    margin-right: 0;
}

#gallery .gal-img-1,
#gallery .gal-img-2,
#gallery .gal-img-3 {
    width: 100%;
    height: 400px;
}

.of-img-item {
    width: 100%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    height: 250px;
    width: 250px;
    overflow: hidden;
    border-radius: 50%;
}
.of-img-item img {
    max-width: 100%;
    height: auto;
}

#ab {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 50px));
    text-align: center;
    font-size: 1.7em;
    color: #fff;
    font-family: 'Mina';
    line-height: 100px;
}
#ab-logo {
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    height: 58px;
    background-image: url(../img/p2k-logo-b.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.ab-wwd-2 {
    display: inline-block;
    text-align: center;
}
.ab-wwd {
    margin-top: 30px;
    margin-right: 8px;
    margin-left: 8px;
    padding: 5px;
    display: inline-block;
    text-align: center;
    width: 220px;
    font-size: 1.2em;
    border-width: 1px;
    border-style: solid;
    border-color: #000;
    border-top-left-radius: 20px;
    /*transition: 0.2s border-color ease-in-out;*/
}
/*.ab-wwd:hover {
    border-color: #F8C300;
}*/
.ab-wwd-bot {
    height: auto;
    width: 100%;
    font-size: 1.4em;
    border: none;
}
.ab-inf {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 13px;
    font-size: 1.1em;
    max-width: 750px;
    text-align: left;
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #000;
    border-top-left-radius: 23px;
}

#rodo {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    cursor: default;
    background: rgba(150, 150, 150, 0.6);
    z-index: 1000!important;
}

#rf {
    display: none;
}

/* DESKTOPS */
@media only screen and (min-width: 768px) {

    p {
        letter-spacing: 0.5px;
    }
    h1 {
        font-size: 3em;
    }
    .col {
        margin: auto;
        width: 50%;
        margin-top: 10px;
    }
    .col-right {
        float: right;
    }
    .col-left {
        float: left;
    }
    .w30 {
        width: 30%;
    }
    .w70 {
        width: 70%;
    }

    /* HEADER */
    header #top-h {
        display: none;
    }
    #t2k-large {
        font-size: 100px!important;
        color: #F8C300;
        font-weight: bold;
        letter-spacing: -10px;
    }
    header #media {
        line-height: 50px;
        float: right;
        display: block;
    }
    header #media a {
        margin: 0 15px;
        font-size: 1.5em;
        color: #fff;
        transition: color 0.2s;
    }
    header #media a:hover {
        color: #F8C300;
        background: #000;
    }
    header nav.top {
        font-size: 1em;
        top: 0;
        left: 0;
        right: 0;
        position: fixed;
    }
    header nav.top ul {
        margin-left: 40px;
        float: left;
    }
    header nav.top li {
        width: auto;
        display: inline;
        float: left;
    }
    header nav.top li#burger-tab {
        display: none;
    }
    header nav.top #exp-menu {
        transition: none;
        max-height: 50px!important;
    }
    header nav.top a {
        padding: 0 20px; }

    /* MAIN */
    main {
        padding-top: 50px;
    }

    /* SECTIONS */
    section article {
        margin: auto;
        max-width: 800px;
        font-size: 1.1em;
    }

    /* SLIDERS */
    section.sl1 {
        height: calc(100vh - 50px);
        color: #000;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg.jpg);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center center;
        background-size: cover;
    }

    section.sl2 {
        display: block;
    }
    section.sl2 article {
        max-width: 100%;
        padding: 0;
    }
    section.sl3 article {
        max-width: 100%;
    }

    /* OTHER */
    /* OVERLAY */
    #overlay {
    }
    #overlay img {
        max-width: 100%;
        max-height: 100%;
    }
    /* CONTACT */
    #contact {
        max-width: 1200px;
        margin: auto;
    }
    #contact .col {
        margin-bottom: 0;
    }
    #map-cont {
        margin-top: 30px;
    }
    #map {
        height: 400px;
        width: 100%;
    }
    /* GALLERY */
    #gallery-st {
        display: block;
        background: #000;
    }
    #gallery-st .gal-item {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        min-width: calc(33.33% - 4px);
        max-width: calc(33.33% - 4px);
        width: calc(33.33% - 4px);
        height: 300px;
        float: left;
        opacity: 0.7;
        transition: opacity 0.2s, filter 0.2s;
        filter: grayscale(40%);
        cursor: pointer;
    }
    #gallery-st .gal-item:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    #gallery-inner {
        width: 1200px;
        margin: auto;
        padding: 3px 0 3px 0;
    }
    #gallery .gal-row {
        font-size: 0;
        text-align: center;
        margin-bottom: 3px;
    }
    #gallery .gal-img {
        cursor: pointer;
        margin-bottom: 0;
    }
    #gallery .gal-img-1 {
        width: 1200px;
        height: 400px;
    }
    #gallery .gal-img-2 {
        width: 598.5px;
        height: 300px;
    }
    #gallery .gal-img-3 {
        width: 398px;
        height: 200px;
    }

    #offer .col {
        margin-top: 20px;
    }

    .of-img-item {
        height: 220px;
        width: 220px;
        overflow: hidden;
        border-radius: 50%;
        vertical-align: text-top;
    }
    .of-img-item img {
        max-width: 100%;
        height: auto;
        display: block;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        transition: 0.2s filter ease-in-out;   margin: auto;
    }
    .of-img-item img:hover {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }

    .of-bord {
        border-style: solid;
        border-color: #000;
        border-width: 0;
        padding: 7px;
        transition: 0.2s border-color;
    }
    .of-bord:hover {
        border-color: #F8C300;
    }
    .of-bord-left {
        border-left-width: 2px;
        border-top-left-radius: 23px;
    }
    .of-bord-right {
        border-right-width: 2px;
        border-bottom-right-radius: 23px;
    }

    #ab {
        font-size: 3em;
        color: #fff;
        line-height: 100px;
    }
    #ab-logo {
        width: 500px;
        height: 116px;
    }

    #mail-form input[type=text],
    #mail-form input[type=submit],
    #mail-form textarea {
        max-width: 700px;
    }
    #mail-form input[type=text] {
        width: calc(50% - 3px);
        max-width: 348px;
    }

    #rf {
        display: block;
    }
}
