﻿


.logoimages
{
    float: left;   
    margin:0px;
   
}

.contentImage 
{
    float: left;
    clear:right;
    position:relative;
}



/*footer contact menü*/
.contactmenu 
{
    text-transform: none;
    color: white;
    display: inline-block;
    cursor: pointer;
    pointer-events: none;
    position: absolute;
    font-weight: bolder;
    font-size: 18px;
    margin-left: 2%;  
    margin-top:2%;
    position:relative;
}

.contactmenu:hover 
{
    pointer-events: all;
    color: white;
}

.label 
{
    display: inline-block;
    cursor: pointer;
    pointer-events: all;
}

.spacer 
{
    display: inline-block;
    width: 80px;
    margin-left: 15px;
    margin-right: 15px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

 .spacer:before 
{
    content: "";
    position: absolute;
    border-bottom: 1px solid #ffffff;
    height: 1px;
    width: 0%;
    transition: width 0.25s ease;
    transition-delay: 0.7s;
}

.item 
{
    position: relative;
    display: inline-block;
    margin-right: 30px;
    top: 10px;
    opacity: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
    transition-delay: 0;
    
}

span 
{
    transition: color 0.5s ease;
}

.item:hover span 
{
    color: white;
}

.contactmenu:hover .spacer:before
{
    width: 100%;
    transition-delay: 0s;
}

.contactmenu:hover .item 
{
    opacity: 1;
    top: 0px;
}

/*footer contact menü
/*childs*/ 

.item:nth-child(1) 
{
    transition-delay: 0.45s;
}

.item:nth-child(2) 
{
    transition-delay: 0.4s;
}

.item:nth-child(3) 
{
    transition-delay: 0.35s;
}

.item:nth-child(4) 
{
    transition-delay: 0.3s;
}

.item:nth-child(5) 
{
    transition-delay: 0.25s;
}

.item:nth-child(6) 
{
    transition-delay: 0.2s;
}

.item:nth-child(7) 
{
    transition-delay: 0.15s;
}

.item:nth-child(8) 
{
    transition-delay: 0.1s;
}

.item:nth-child(9) 
{
    transition-delay: 0.05s;
}

.item:nth-child(10) 
{
    transition-delay: 0s;
}

.contactmenu:hover .item:nth-child(1) 
{
    transition-delay: 0.25s;
}

.contactmenu:hover .item:nth-child(2) 
{
    transition-delay: 0.3s;
}

.contactmenu:hover .item:nth-child(3) 
{
    transition-delay: 0.35s;
}

.contactmenu:hover .item:nth-child(4) 
{
    transition-delay: 0.4s;
}

.contactmenu:hover .item:nth-child(5) 
{
    transition-delay: 0.45s;
}

.contactmenu:hover .item:nth-child(6) 
{
    transition-delay: 0.5s;
}

.contactmenu:hover .item:nth-child(7) 
{
    transition-delay: 0.55s;
}

.contactmenu:hover .item:nth-child(8) 
{
    transition-delay: 0.6s;
}

.contactmenu:hover .item:nth-child(9) 
{
    transition-delay: 0.65s;
}

.contactmenu:hover .item:nth-child(10) 
{
    transition-delay: 0.7s;
}        

/*
Inspiration for this menu: https://dribbble.com/shots/2962837-Header-Nav by Scout: https://dribbble.com/scout
*/

@import 'https://fonts.googleapis.com/css?family=Roboto:400,500';

*, *:before, *:after 
{
    box-sizing: inherit;
}

html,
body
{
    box-sizing: border-box;
    /*különben összeugrik menü, ha nincs nyitva*/
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    background-color: blue;
    overflow:hidden;
}

html, body,
div, object, iframe, 
h1, h2, h3, h4, h5, h6, p, 
blockquote, ol, ul, li, form, legend, label, 
table, header, footer, nav, section, figure 
{
    margin: 0px;   
    padding: 0px;
}

.partsul
{
    list-style-type: none;
}

header, footer, nav,
section, article, hgroup, figure {
    display: block;
}

.container 
{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.container:after 
{
    content: "";
    display: table;
    clear: both;
}

.container 
{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
}

/* 
Full screen background image
    sárga rész
*/
.hero
{  
    background-color: #ffff33; 
    background-size: cover;
    width: 100%;
    height: 35%;
    position: relative;
}

    /*
Blueish tint overlay sárga sima állapot
*/
    .hero:after 
    {
        content: '';
        background-color: #ffff33;
        box-shadow: 0 4px 8px 0 #ffff33, 0 6px 20px 0 white;
        background-image: url('../../Images/10270001.JPG');
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        width: 100%;
        border:none;
        height: 100%;
    }

    /* 
Making sure everything in .hero sits above our :after elements 
*/
    .hero * 
    {
        position: relative;
        z-index: 1;
    }

#masthead 
{
    padding: 2.5em 0;
    position: relative;
}

    #masthead.is-active 
    {
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    }

    /*
Using this method because browsers can transition opacity very cheaply as opposed to using background: rgba
https://www.html5rocks.com/en/tutorials/speed/high-performance-animations/
        maga a menü rész
*/
    #masthead:after 
    {
        content: '';
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ffff33; 
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #masthead.is-active:after 
    {
        opacity: 1;
    }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger 
{
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    float: left;
    font: inherit;
    margin: 0.8125em 0 0;
    overflow: visible;
    outline: none;
    padding: 0;
    text-transform: none;
    transition: opacity 0.15s;
    -webkit-appearance: none;
}

    .hamburger:hover 
    {
        opacity: 0.7;
    }

.hamburger-box 
{
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
    margin-left:-150%;
}

.hamburger-inner 
{
    display: block;
    top: 50%;
    margin-top: -2px;
}

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after 
    {
        width: 30px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        position: absolute;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

#masthead.is-active .hamburger-inner,
#masthead.is-active .hamburger-inner::before,
#masthead.is-active .hamburger-inner::after 
{
    background-color: #000;
}

.hamburger-inner::before,
.hamburger-inner::after 
{
    content: "";
    display: block;
}

.hamburger-inner::before 
{
    top: -6px;
}

.hamburger-inner::after 
{
    bottom: -6px;
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after 
{
    transition-property: none;
    background-color:black;
    border:none;
}

.hamburger--boring.is-active .hamburger-inner 
{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

    .hamburger--boring.is-active .hamburger-inner::before 
    {
        top: 0;
        opacity: 0;
    }

    .hamburger--boring.is-active .hamburger-inner::after 
    {
        bottom: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

.hamburger-label 
{
    color: black;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-left: 0.3125em;
    text-transform: uppercase;
}

#masthead.is-active .hamburger-label 
{
    color: black;
}

.hamburger-box,
.hamburger-label 
{
    display: inline-block;
    vertical-align: middle;
}

#site-nav 
{
    clear: both;
    display: flex;
    flex-direction: column;
    height: 0px;
    overflow: hidden;
    padding-top: 2.5em;
}

    #site-nav.is-active 
    {
        height: auto;
        overflow: hidden;
    }

    #site-nav .col 
    {
        padding-bottom: 2.5em;
    }

@media screen and (min-width: 550px) 
{
    #site-nav 
    {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #site-nav .col 
        {
            flex: 0 0 50%;
        }   
}

@media screen and (min-width: 768px) 
{
    #site-nav .col 
    {
        flex: 0 0 33.333333333%;
    }

}

@media screen and (min-width: 960px) 
{
    #site-nav 
    {
        flex-wrap: nowrap;
    }

    #site-nav .col 
        {
            flex: 0 0 20%;
        }

    #site-nav .col:last-child 
            {
                display: flex;
                justify-content: flex-end;
            }

 }

@media screen and (min-width: 1080px) 
{
   
}
    #site-nav h4 {
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    #site-nav ul {
        list-style-type: none;
        margin-top: 1em;
    }

    #site-nav li {
        margin-bottom: 0.3125em;
    }

        /* menü linkek */

        #site-nav li a,
        #site-nav li a:visited,
        #site-nav h4 a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            #site-nav li a:hover,
            #site-nav li a:focus,
            #site-nav h4 a:hover {
                color: blue;
            }

    #site-nav .social {
        margin: 0;
        overflow: hidden;
    }

        #site-nav .social li {
            float: left;
            margin: 0 0.3125em;
            width: 32px;
            height: 32px;
        }

            #site-nav .social li svg {
                display: block;
                fill: #b4b9ba;
                width: 100%;
                height: 100%;
                transition: fill 0.3s ease;
            }

            #site-nav .social li:hover svg {
                fill: #686d6e;
            }

    #masthead .col {
        opacity: 0;
    }

    #masthead.is-active .col {
        transform: translateY(40px);
        transition: opacity 0.3s ease;
        animation: fade-in-stagger 0.8s ease forwards;
    }

        #masthead.is-active .col:nth-child(1) {
            -webkit-animation-delay: 0;
        }

        #masthead.is-active .col:nth-child(2) {
            -webkit-animation-delay: 0.1s;
        }

        #masthead.is-active .col:nth-child(3) {
            -webkit-animation-delay: 0.2s;
        }

        #masthead.is-active .col:nth-child(4) {
            -webkit-animation-delay: 0.3s;
        }

        #masthead.is-active .col:nth-child(5) {
            -webkit-animation-delay: 0.4s;
        }

    @keyframes fade-in-stagger {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.rectangle
{
    width: 90%;
    background-color: white;
    color: black;
    height: 80%;
    border: none;
    position: relative;
    box-shadow: 0px 10px 30px #ffff33;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    text-align: center;
    padding: 5px;
}

    p {
        margin-bottom: 10px;
    }

    h1 {
        margin-bottom: 10px;
    }

    /* animáció üdvre*/
    .pulse {
        -webkit-animation-name: pulse;
        animation-name: pulse;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    @-webkit-keyframes pulse {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }

        50% {
            -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
        }

        100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
    }

    @keyframes pulse {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }

        50% {
            -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
        }

        100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
    }

    /* galéria ikon*/
    .GalleryContainer 
    {
        position: relative;
        width: 10%;
        cursor: pointer;
        margin-left: auto;
        margin-right: auto;
        /*align-content:center;*/
    }

    /*galéria link*/
    #iconGallery a,
    #iconGallery a:visited {
        color: black;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
    }

        #iconGallery a:hover,
        #iconGallery a:focus,
        #iconGallery a:hover {
            color: white;
            font-size: 13px;
        }


    .imageIcon {
        display: block;
        width: 50%;
        height: auto;
    }

    .overlay 
    {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 50%;
        opacity: 0;
        transition: .5s ease;
        background-color: blue;
    }

    .Gallery:hover .overlay {
        opacity: 1;
    }

    .galleryIconText {
        color: white;
        font-size: 15px;
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 1px;
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    #mapContact {
        width: 90%;
        height: 550px;
        border: none;
        align-content: center;
    }

    .linkclassincontent a:link,
    a:hover,
    a:visited,
    a:active 
    {
        text-align: center;
        align-content:center;
        margin-right:6%;
        text-decoration: none;
        font-weight: bold;
        color: blue;
        font-size: 16px;
    }

