/*========================================================================

                        DEFAULT VALUES:

                        Font Family         : Roboto Condensed

                        Greenish Blue       : #34c6d3 (Buttons, Icons, Links, Lines and Background)
                        Steel Gray          : #41464b (Headings)
                        Blue Bayoux         : #64707b (Paragraphs)
                        White               : #fff (text with black backgrounds)
                        Black               : #000

========================================================================*/
/*========================================================================
                        General CSS
========================================================================*/

html,
body {
    height: 100%;
}

p {
    color: #000;
    font-weight: 300;
    font-family: "Josefin Sans", "sans-serif";
}

h3 {
    color: #fff;
    text-transform: uppercase;
    font-family: "Amatic SC", "sans-serif";
}

h4 {
    color: #fff;
    text-transform: uppercase;
    font-family: "Amatic SC", "sans-serif";
}

/*========================================================================
                        HOME
========================================================================*/

#home {
    height: 100%;
}

#home-cover {
    height: 100%;
    background-image: url("../img/bg-home.jpeg");
}

#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
    margin: auto;
    width: 40%;
    height: 0%;


}

#home-content-box-inner {
    display: inline-block;
    margin-top: 100px;


}

#home-heading h3 {
    color: #fff;
    font-size: 100px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    padding: 50px 0;
}

#about-bg-diagonal {
    width: 60%;
    max-height: 100%;
    float: right;
    background-image: url(../img/csaladi%20katamaran%202.jpeg);
    border-left: 200px solid #fff;
    border-top: 700px solid transparent;
}

#about-content-box {
    float: left;
    height: 700px;
}

#about-content-box-outer {
    width: 100%;
    height: 100%;
    display: table;
}

#about-content-box-inner {
    display: table-cell;
    vertical-align: middle;
}

#about .content-title h3 {
    text-align: left;
}

#about .content-title-underline {
    margin: 0 0 30px 0;
}

#welcome-text p {
    font-size: 25px;
    margin-bottom: 30px;
}


/*========================================================================
                        PARALLAX(General)
========================================================================*/
.bg-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



/*========================================================================
                        ANIMATE
========================================================================*/

#home-cover,
#home-heading {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

#home-cover {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

#home-heading {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.second-element {
    -webkit-animation-delay: 1s;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

/*========================================================================
                        BUTTONS
========================================================================*/
.btn-general {
    border-width: 2px;
    border-radius: 0;
    padding: 12px 26px 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-white {
    border-color: #fff;
    color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #fff;
    color: #41464b;
}

.btn-blue {
    border-color: #34c6d3;
    color: #34c6d3;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #34c6d3;
    color: #fff;
}

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    padding: 3px 15px;
    border-radius: 0;
    display: none;
}

/*========================================================================
                        WORK
========================================================================*/
#work {
    clear: both;
}

.img-wrapper {
    overflow: hidden;
}

.img-wrapper img {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

.img-wrapper img:hover {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

/*========================================================================
                        SOCIAL
========================================================================*/
.social-list {
    position: center;
}

.social-list li {
    list-style: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    margin-top: 10px;
}

.social-icon i {
    font-size: 25px;
}

.icon-gray {
    color: #64707b;
}

.icon-white i {
    color: #fff;
}

.social-icon i:hover {
    color: #34c6d3;
}


/*========================================================================
                        FOOTER
========================================================================*/
footer {
    padding: 0;
    border-top: 0;
}

#footer-bottom {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
}

#footer-copyrights p {
    color: #fff;
    margin: 0;
}

#footer-menu {
    float: right;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#footer-menu ul li {
    display: inline-block;
}

#footer-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}

#footer-menu a:hover {
    color: #34c6d3;
}

/*========================================================================
                        NAVIGATION
========================================================================*/
.navbar {
    font-family: "Amatic SC", "sans-serif";
    position: absolute !important;
    background: rgba(0, 0, 0, 0.7);
}

.navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    float: right;
}

.navbar-nav > li > a.position {
    color: #34c6d3 !important;
}

.navbar-nav > li > a {
    color: #fff !important;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    background: none !important;
    color: #34c6d3 !important;
}

/*========================================================================
                        PROGRAMOK
========================================================================*/
#programok {
    height: 100%;
}

#programok-cover {
    height: 100%;
    background-image: url("../img/bg-home.jpeg");
}

#programok-content-box-inner {
    display: block;
    vertical-align: middle;
    padding: 140px 0 20px 0;
}

#programok-heading h3 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
}

#programok-text p {
    font-size: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    border-radius:10px;
}
#programok-text a {
    color: #34c6d3;
}



/*========================================================================
                        hajoink
========================================================================*/
#hajok {
    height: 100%;
}

#hajoink-cover {
    height: 100%;
    background-image: url("../img/bg-home.jpeg");
}

.hajoink-content-box {
    height: 100%;
    padding: 60px 0 60px 0;
    width: 100%;
    display: table;
    margin: auto;
    padding: 50px 0;
}

#hajoink-content-box-inner {
    display: block;
    vertical-align: middle;
    padding: 140px 0 20px 0;


    /*=  text-align: center;  =*/

}

#hajoink-heading h3 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom:0;
}

#hajoink {
    height: 100%;
    padding-bottom: 10px;
}

.hajo {
    margin: 0 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 40px;
}

.hajo img {
    border-radius: 40px;
    max-height: 130px;
}

.hajo-info {
    padding: 10px 0 30px 0;
}

h4.hajo-nev {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 20px;
    color: #34c6d3;
}

.hajo p {
    color: #fff;
}

.owl-dots {
    visibility: hidden;
}


/*========================================================================
                        UTMUTATOK
========================================================================*/
#utmutatok {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    font-size: 20px;
}

.utmutato-elem {
    color: #34c6d3;
}

#utmutatok-layer {
    height: 100%;
}


/*========================================================================
                        KAPCSOLAT
========================================================================*/
#contact-left h3,
#contact-right h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

#contact-left p {
    color: #fff;
    margin: 10px;
}

address {
    color: #fff;
}

address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}

#phone-fax-email a {
    color: #34c6d3;
}

form .form-control {
    background: white;
    border-radius: 0;
    border-color: #fff;
    font-weight: 300;
    padding: 8px 16px;
    margin-bottom: 12px;
    color: #fff;
}

.kapcsolat-logo img {
    max-width: 140px;
}

#contact {
    background: rgba(0, 0, 0, 0.5);
    padding-top: 10px;
    padding-bottom: 5px;
    border-radius: 30px;
    margin-bottom: 0px;
}

#kapcsolat {
    height: 100%;
}

#kapcsolat #home-heading h3 {
    margin: 0px;
    padding-bottom: 5px
}
#kapcsolat #home-content-box-inner{
    padding: 40px 0 20px 0;
}

/*========================================================================
                        GALÉRIA
========================================================================*/
#galeria {
    height: 100%;
}


/*========================================================================
                        ÁRAK
========================================================================*/
#arak {
    height: 100%;
}

#arlista {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 40px;
}

#arlista p {
    color: #fff;
    font-size: 20px;
}

#arlista a {
    color: #34c6d3;
}
