
@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@300;400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300&display=swap');


.hide-on-desk {
    display: none;
}

.saira {
    font-family: 'Saira Extra Condensed', sans-serif;
}

.srcsans {
    font-family: 'Source Sans 3', sans-serif;
}

body {
    background: #fff;
    color: #666666;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #1f1f1f;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;

}
.back-to-top:hover {
    color: #1f1f1f;
    background: #fff;
    border: 1px solid #1f1f1f;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #18d26e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 6000;
    padding: 0;
    background: rgba(0, 0, 0, 0.9);
}
#header .menu-container {
    width: 1200px;
}
#header.header-transparent {
    background: rgba(0,0,0, .45);
    border-bottom: 1px solid #919192;
}
#header.header-transparent.header-scrolled {
    background: rgba(0,0,0, 1);
}
.header-bl {
    background: none;
}

#header .logo {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 15px;
    top: 5px;
}

#header .logo a {
    color: #fff;
}

#header .logo img {    
    transition: width .4s;
	
	max-height: 46px;
}

#header .logo img.small {
    width: auto;
}

@media (max-width: 992px) {
    #header .logo {
        top: 3px;
    }
}

#statikus-oldal, #galeria-page {
    padding: 70px 0;    
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
    float: right;
}
.nav-menu ul {
    transition: margin .4s;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 9px 20px;
}
.nav-menu > ul > li:last-child {
    padding-top: 7px;
}
.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: #333333;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #000;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 11px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    transition: all 0.5s;
}

.mobile-nav-toggle i {
    color: #000;
    transition: all 0.5s;
}

.mobile-nav {
    position: fixed;
    top: 50px;
    right: 0px;
    bottom: 15px;
    left: 0px;
    z-index: 9999;
    overflow-y: auto;
    background: rgba(0,0,0,.8);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #333333;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #18d26e;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(26, 26, 26, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 849px;
    background: #000;
    overflow: hidden;
    position: relative;
}
#intro .carousel-indicators {
    display: none;
}
@media (max-height: 500px) {
    #intro {
        height: 150vh;
    }
}

#intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-item {

    background-position: center;
    background-repeat: no-repeat;
}
#intro .carousel-item p {
    font-size: 48px;
    color: #fff;    
    width: 100%;
    line-height: 50px;
    font-weight: 300;
    text-shadow: 4px 6px 21px rgba(0,0,0,1);

}
#intro .carousel-item::before {
    content: '';
    /*  background-color: rgba(0, 0, 0, 0.7);*/
}

#intro .carousel-container {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0px;
    right: 0px;
    width: 1200px;
    margin: 0 auto;
}

#intro .container {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1200px;
    position: absolute;
    left: 0;
}

#intro h2 {
    color: #fff;
    font-weight: bold;
    font-size: 90px;
    line-height: 92px;
    padding-top: 260px;
    padding-left: 30px;
    text-transform: uppercase;
    text-shadow: 4px 6px 21px rgba(0,0,0,1);

}

#intro h2 span {
    color: #ffaa17;
}

#intro .carousel-item a.orange-btn {
    font-size: 50px;
    color: #000;
    display: inline-block;
    line-height: 77px;
    padding: 0 25px 0 25px;
    text-transform: uppercase;
    position: relative;
    background: #ffaa17;
    transition: all .3s ease-in-out;
    border: 1px solid #ffaa17;
}
.carousel-item a.orange-btn:after {
    width: 0px;
    height: 0px;
    display: block;
    content: '';
    border-style: solid;
    border-width: 80px 26px 0 0;
    border-color: #ffaa17 transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    right: -27px;
    top: -1px;
    transition: all .3s ease-in-out;
    
}

#intro .carousel-item a:hover {
    color: #ffaa17;
    border: 1px solid #000;
    background: #000;
    text-decoration: none;
}
#intro .carousel-item a:hover::after {
    border-color: #000 transparent transparent transparent;
}


#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #intro p {
        width: 60%;
    }
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {
    #intro .carousel-control-prev, #intro .carousel-control-next {
        width: 5%;
    }
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
}
#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #18d26e;
}

#intro .btn-get-started:hover {
    background: #fff;
    color: #18d26e;
}


.mobile-nav-active .dineuron-menu {opacity: 1; visibility: visible;  }
.mobile-nav  li a{
    color: #fff;
    font-size: 17px;
    font-family: "rogan-light", sans-serif;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #595959;
    padding: 10px 0;
    margin: 0 20px;
}
.mobile-nav  li{
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-animation-timing-function: cubic-bezier(.45,.005,0,1);
    -moz-animation-timing-function: cubic-bezier(.45,.005,0,1);
    -o-animation-timing-function: cubic-bezier(.45,.005,0,1);
    animation-timing-function: cubic-bezier(.45,.005,0,1);
}
body .mobile-nav a:hover, body .mobile-nav .active > a, body .mobile-nav li:hover > a {
    color: #33a6e5;
}
.mobile-nav-active .mobile-nav li{
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform .2s,opacity .2s;
    transition: transform .2s,opacity .2s;
}
.mobile-nav li.delay-1{-webkit-transition-delay:0.1s; -moz-transition-delay:0.1s; -ms-transition-delay:0.1s; -o-transition-delay:0.1s; transition-delay:0.1s; }
.mobile-nav li.delay-2{-webkit-transition-delay:0.2s; -moz-transition-delay:0.2s; -ms-transition-delay:0.2s; -o-transition-delay:0.2s; transition-delay:0.2s; }
.mobile-nav li.delay-3{-webkit-transition-delay:0.3s; -moz-transition-delay:0.3s; -ms-transition-delay:0.3s; -o-transition-delay:0.3s; transition-delay:0.3s; }
.mobile-nav li.delay-4{-webkit-transition-delay:0.4s; -moz-transition-delay:0.4s; -ms-transition-delay:0.4s; -o-transition-delay:0.4s; transition-delay:0.4s; }
.mobile-nav li.delay-5{-webkit-transition-delay:0.5s; -moz-transition-delay:0.5s; -ms-transition-delay:0.5s; -o-transition-delay:0.5s; transition-delay:0.5s; }
.mobile-nav li.delay-6{-webkit-transition-delay:0.6s; -moz-transition-delay:0.6s; -ms-transition-delay:0.6s; -o-transition-delay:0.6s; transition-delay:0.6s; }
.mobile-nav li.delay-7{-webkit-transition-delay:0.7s; -moz-transition-delay:0.7s; -ms-transition-delay:0.7s; -o-transition-delay:0.7s; transition-delay:0.7s; }
.mobile-nav li.delay-8{-webkit-transition-delay:0.8s; -moz-transition-delay:0.8s; -ms-transition-delay:0.8s; -o-transition-delay:0.8s; transition-delay:0.8s; }
.mobile-nav li.delay-9{-webkit-transition-delay:0.9s; -moz-transition-delay:0.9s; -ms-transition-delay:0.9s; -o-transition-delay:0.9s; transition-delay:0.9s; }

.nav-button{
    z-index:10000;
    border:none;
    display:block;
    padding:12px;
    top: 5px;
    right: 10px;
}
.nav-button #nav-icon3{width:24px;height:22px;display:inline-block;position:relative;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:.5s ease-in-out;-moz-transition:.5s ease-in-out;-o-transition:.5s ease-in-out;transition:.5s ease-in-out;cursor:pointer;}
.nav-button #nav-icon3 span{
    display:block;
    position:absolute;
    height:3px;
    width:100%;
    background:#000;
    border-radius:9px;
    opacity:1;
    left:0;
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transition:.25s ease-in-out;-moz-transition:.25s ease-in-out;-o-transition:.25s ease-in-out;transition:.25s ease-in-out}
.nav-button #nav-icon3 span:nth-child(1){top:0}
.nav-button #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3){top:7px}
.nav-button #nav-icon3 span:nth-child(4){top:14px}
.mobile-nav-active #nav-icon3 span:nth-child(1){top:9px;width:0;left:50%}
.mobile-nav-active #nav-icon3 span:nth-child(2){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}
.mobile-nav-active #nav-icon3 span:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}
.mobile-nav-active #nav-icon3 span:nth-child(4){top:9px;width:0;left:50%}

.mobile-nav-active #nav-icon3 span {
    background: #fff;
}


.flex-center{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;height:100%}


a.ib-a * {
    text-decoration: none;
}
a.ib-a {
    outline: 0px solid #02afff;
    transition: outline 0.3s;
    text-decoration: none;
    display: block;
}
a.ib-a:hover {
    outline-width: 8px;
    text-decoration: none;
}





/******************************************************* CUSTOM CSS ****************************************************************************/

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

.black-ferde {
    position: absolute;
    right: -35px;
    top: -58px;
    height: 113px;
    z-index: 5000;
    width: 15px;
    background: #000;
}
.black-ferde:after {
    width: 0px;
    height: 0px;
    display: block;
    content: '';
    border-style: solid;
    border-width: 113px 32px 0 0;
    border-color: #000 transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    right: -32px;
    top: 0px;
    transition: all .3s ease-in-out;
    
}
.black-ferde:before {
    width: 0px;
    height: 0px;
    display: block;
    content: '';
    border-style: solid;
    border-width: 0 0 113px 32px;
    border-color: transparent transparent #000 transparent;
    transform: rotate(0deg);
    position: absolute;
    left: -32px;
    top: 0px;
    transition: all .3s ease-in-out;
}

.kapcsolat-csik-top {
    background-color: #ffaa17;
    position: relative;
    margin-top: -50px;
    z-index: 5000;
}
.kapcsolat-csik-top:after {
    width: 0px;
    height: 0px;
    display: block;
    content: '';
    border-style: solid;
    border-width: 95px 26px 0 0;
    border-color: #ffaa17 transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    right: -26px;
    top: 0px;
    transition: all .3s ease-in-out;
    
}
.kapcsolat-csik-top .vegyefel {
    font-size: 40px;
    color: #000;
    line-height: 42px;
    margin: 0;
    text-transform: uppercase;
    float: left;
    padding: 28px 0 28px 28px;
}
.kapcsolat-csik-top .hivjon, .kapcsolat-csik-top .ajanlat {
    float: left;
    font-size: 28px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000;
    font-weight: 300;
}
.kapcsolat-csik-top .ajanlat {
    background: url('../img/ajanlat.png') no-repeat left center;
    padding: 19px 0 19px 86px;
    margin: 0 0 0 25px;

}
.kapcsolat-csik-top .ajanlat span {
    text-transform: none;
}
.kapcsolat-csik-top .hivjon {
    background: url('../img/hivjon.png') no-repeat left center;
    padding: 19px 0 19px 86px;
    margin: 0 0 0 25px;
}

#main {
    margin-top: -45px;
}

#bemutatkozas {
    background: url('../img/bemut-bg.jpg') no-repeat center center;
    padding: 140px 0 60px 0;
}

h2.section-title {
    color: #7b7a7a;
    font-size: 37px;
    text-transform: uppercase;
    line-height: 44px;
    font-weight: 300;
    margin-bottom: 30px;
}

h2.section-title span {
    font-size: 41px;
    color: #000;
    font-weight: bold;
}
h2.section-title.csikos {
    padding-left: 27px;
    background: url('../img/section-csik.png') repeat-y left top;
    
}
p.section-text {
    font-size: 20px;
    line-height: 24px;
    color: #171717;
    font-family: 'Source Sans 3', sans-serif;
    margin: 15px 0;
}

p.pipas {
    font-size: 32px;
    color: #7b7a7a;
    line-height: 34px;
    text-transform: uppercase;
    padding: 0 0 0 48px;
    margin: 25px 0;
    background: url('../img/pipas.png') no-repeat left center;
}
.bemut-also {
    font-size: 31px;
    color: #7b7a7a;
    line-height: 34px;
    text-transform: uppercase;
    padding: 10px 0 10px 100px;
    margin-top: 80px;
}
.bemut-also.ba1 {
    background: url('../img/bm-ik-1.png') no-repeat left center;
}

.bemut-also.ba2 {
    background: url('../img/bm-ik-2.png') no-repeat left center;
}
.bemut-also.ba3 {
    background: url('../img/bm-ik-3.png') no-repeat left center;
}

.bemut-also.ba4 {
    background: url('../img/bm-ik-4.png') no-repeat left center;
}

#szolgaltatasaink {
    background: url('../img/szolg-bg.jpg') no-repeat center center;
    padding: 80px 0;
    height: 1060px;
}
#szolgaltatasaink h2.section-title span {
    color: #fff;
}

p.alcim {
    font-size: 34px;
    color: #ffaa17;
    line-height: 36px;
    margin: 50px 0 15px 0;
    text-transform: uppercase;
}

#szolgaltatasaink ul {
    margin: 0;
    padding-left: 30px;
}

#szolgaltatasaink ul li {
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 3px 0;
}

#hogyan-dolgozunk {
    padding: 80px 0;
    background: #fff;
}
#hogyan-dolgozunk h2.section-title img {
    display: block;
    margin: 20px auto 0 auto;
}
#hogyan-dolgozunk h2.section-title {
    margin-bottom: 80px;
}
.hogyan-doboz p.hd-t {
    font-size: 32px;
    color: #7b7a7a;
    text-transform: uppercase;
    margin: 0;
}

#referenciak {
    padding: 76px 0;
    background: url('../img/referenciak.jpg') no-repeat center center;
    height: 900px;
}

#referenciak h2.section-title span {
    color: #fff;
}
#referenciak p.saira.s20 {
    font-size: 22px;
    color: #fff;
    line-height: 25px;
}


.ref-carousel {
    position: relative;
}

.ref-carousel .item {
    text-align: center;
}
.ref-carousel .item img {
    width: 100%;
    display: inline-block;  
    border: 2px solid #fff;  
}

.ref-carousel.owl-carousel .owl-dots {
    margin-top: 10px;
}
.ref-carousel.owl-carousel button.owl-dot {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    background: #fff;
}
.ref-carousel.owl-carousel button.owl-dot.active {
    background: #ffaa17;
}

.owl-nav {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}
.owl-carousel .owl-nav button.owl-next {
    font-size: 30px;
    color: #002a5c;
    margin-left: 15px;
} 
.owl-carousel .owl-nav button.owl-prev {
    font-size: 30px;
    color: #002a5c;
    margin-right: 15px;
}

p.carousel-text {
    font-size: 32px;
    color: #fff;
    line-height: 34px;
    text-transform: uppercase;
    margin: 20px 0 0 0;
}

#kapcsolat {
    padding: 80px 0;
    background-color: #fff;
}

p.kapcs-text {
    font-size: 30px;
    color: #171717;
    line-height: 34px;
    font-weight: 300;
    text-transform: uppercase;
}

p.kapcs-ikon {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 22px;
    padding: 15px 0 15px 100px;
    margin: 20px 0;
	font-family: 'Source Sans 3', sans-serif;
}
p.kapcs-ikon.ikon-1 {
    background: url('../img/kapcs-ikon-1.png') no-repeat left center;
}
p.kapcs-ikon.ikon-2 {
    background: url('../img/kapcs-ikon-2.png') no-repeat left center;
    padding: 26px 0 26px 100px;
}

p.kapcs-ikon.ikon-3 {
    background: url('../img/kapcs-ikon-3.png') no-repeat left center;
}

.kapcsolat-form {
    margin-top: 120px;
}
.kapcsolat-form .kapcs-inp {
    height: 47px;
    border: none;
    background: #d4d4d4;
    width: 100%;
    padding: 10px;
    font-size: 20px;
    margin: 0 0 15px 0;
    font-family: 'Source Sans 3', sans-serif;
}
.kapcsolat-form textarea {
    border: none;
    background: #d4d4d4;
    font-family: 'Source Sans 3', sans-serif;
    padding: 10px;
    margin: 0;
    width: 100%;
    font-size: 20px;
    height: 90px;
}
.kapcsolat-form label {
    color: #000;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    margin-top: 15px;
}
.kapcsolat-form label input {
    margin-right: 10px;
}
.kapcsolat-form label a {
    text-decoration: underline;
    color: #000;
}

.btn-send {
    font-size: 20px;
    text-transform: uppercase;
    display: inline-block;
    background: #ffaa17;
    color: #fff;
    padding: 5px 12px 4px 12px;
    border: none;
}

#google-map iframe {
    height: 650px;
    width: 100%;
}


footer {
    background: #000;
    padding-top: 20px;
}
footer .copyright {
    background: #ffaa17;
    color: #000;
    font-size: 12px;
    line-height: 52px;
    text-align: center;
}
footer .copyright a {
    color: #000;
}
footer .links {
    margin-bottom: 20px;
}
footer .links a {
    font-size: 26px;
    display: inline-block;
    padding: 0 12px;    
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
}
#kapcsolat .errors {
    color: red;
}
#statikus-oldal {
    margin: 50px 0;
    min-height: 75vh;
}

a.bemut-video-link {
    position: absolute;
    right: 0;
    top: 354px;
}

a img.bemutkicsi {
    border: 6px solid #fff;
}

a img.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -52px;
    margin-top: -51px;
    border-radius: 50%;
}


.pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(255, 170, 23, 0.75);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
  }


@media (min-width: 1940px) {
    #intro .carousel-item {
        background-size: cover;
    }
}




@media (max-width: 768px) {
    body {
        padding-top: 48px;
    }
    body #header {
        height: 48px;
        background: rgba(0, 0, 0, 0.9) !important;
    }
    .nav-button #nav-icon3 span {
        background: #fff;
    }
    #header .logo img {
        height: 40px;
    }
    #intro .carousel-fade .carousel-inner .carousel-item {
        background-color: #02afff;
        background-position: center -80px;
        position: relative;
        padding: 6px 0 33px 0;
    }
    .carousel-control-next, .carousel-control-prev {
        display: none;
    }
    #intro .carousel, #intro .carousel-inner {
        position: relative;
    }
    #intro .carousel-container {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
    }
    #intro .container {
        width: 100%;
        position: relative;
    }
    #intro {
        height: 330px;
    }
    
    .carousel-indicators {
        display: none;
    }
    
    footer .links a {
        width: 100%;
        float: left;
        margin-bottom: 10px;
    }
    
    
    .owl-nav {
        margin: 0;
    }
    
    .ref-carousel.owl-carousel .owl-nav button.owl-prev {
        margin-left: -30px;
    }
    .ref-carousel.owl-carousel .owl-nav button.owl-next {
        margin-right: -30px;
    }
    .ref-carousel {
        margin-top: 0px;
    }
    
    footer .copyright {
        line-height: 30px;
        padding: 10px 25px;
    }
    
    #statikus-oldal {
        padding-top: 0;
        margin-top: 20px;
    }
    
    #intro h2 {
        font-size: 28px;
        line-height: initial;
        margin: 0 auto;
        width: 85%;
        background: rgba(54,53,59, .9);
        padding: 20px 30px 10px 30px;
        margin-top: 22px;
        color: #fff;
    }
    body #intro .carousel-item p {
        font-size: 18px;
        padding-top: 5px;
        line-height: 22px;
        margin: 0 auto;
        width: 85%;
        background: rgba(54,53,59, .9);
        padding: 0px 30px 30px 30px;
        color: #fff;
    }
    #intro .carousel-item a {
        margin: 40px auto 0 auto;
        display: block;
        width: 75%;
        
    }
    
    
    .show-on-mob {
        display: block;
    }
    .hide-on-mob {
        display: none;
    }
    
    .kapcsolat-form {
        padding: 0;
        margin-top: 10px;
    }
    
    .black-ferde, .kapcsolat-csik-top:after {
        display: none;
    }
    .kapcsolat-csik-top {
        margin-top: 15px;
        padding: 0 0 20px 0;
    }
    #intro .carousel-item a.orange-btn {
        font-size: 34px;
        line-height: 57px;
    }
    .carousel-item a.orange-btn:after {
        border-width: 60px 18px 0 0;
        right: -19px;
    }
    .kapcsolat-csik-top .vegyefel {
        font-size: 27px;
        text-align: center;
        float: none;
        line-height: 32px;
        text-transform: uppercase;
        padding: 15px;
    }
    .kapcsolat-csik-top .hivjon {
        background: url(../img/hivjon.png) no-repeat center top;
        padding: 82px 0 0 0;
        margin: 0 0 15px 0;
        float: none;
        text-align: center;
    }
    .kapcsolat-csik-top .ajanlat {        
        background: url('../img/ajanlat.png') no-repeat center top;
        padding: 82px 0 0 0;
        margin: 0;
        float: none;
        text-align: center;
    }
    #main {
        margin-top: 0;

    }
    #bemutatkozas {
        padding: 30px 0;
    }
    img.bemutkep {
        width: 100%;
    }
    a.bemut-video-link {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        right: 0;
        margin: 10px 0;
    }
    a img.bemutkicsi {
        width: 100%;
        border: none;
    }
    .bemut-also {
        margin-top: 20px;
    }
    #szolgaltatasaink {
        padding: 30px 0;
        background: #000;
        height: auto;
    }
    #hogyan-dolgozunk {
        padding: 30px 0;
    }
    #hogyan-dolgozunk h2.section-title {
        margin-bottom: 20px;
    }
    div.hogyan-kep {
        display: none;
    }
    #referenciak {
        padding: 30px 0;
        background: #000;
        height: auto;
    }
    #kapcsolat {
        padding: 30px 0;
    }
}