:root {
    --blue: #001AFF;
    --green: #00FF85;
    --white: #FFFFFF;
    --black: #000000;
    --grey: #333333;

    --bg: #eeeeee;

    --fontPrimary: "BIZ UDGothic", sans-serif;
}

.biz-udgothic-regular {
    font-family: "BIZ UDGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.biz-udgothic-bold {
    font-family: "BIZ UDGothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*body {
    font-family: "BIZ UDGothic", sans-serif;
    font-style: normal;
}*/

html, body {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg) !important;
}

#scrollToTop {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--blue);
    color: var(--white);
    height: 40px;
    width: 40px;
    position: fixed !important;
    bottom: 40px;
    right: 20px;
    z-index: 50;
    font-size: 22px;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(51,51,51,1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(51,51,51,1);
    box-shadow: 0px 5px 20px 0px rgba(51,51,51,1);
    transition: all .3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}
#scrollToTop:hover {
    transform: translateY(-15px);
    background-color: var(--green);
}

nav {
    font-family: var(--fontPrimary) !important;
    font-style: normal;
    font-size: 20px;
    background-color: none !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    transition: all .3s ease-in-out;
}
nav.scrolled {
    background-color: var(--bg);
    -webkit-box-shadow: 0px 5px 30px 1px rgba(51,51,51,1);
    -moz-box-shadow: 0px 5px 30px 1px rgba(51,51,51,1);
    box-shadow: 0px 5px 30px 1px rgba(51,51,51,1);
}

.nav-link {
    position: relative;
}
.nav-link:nth-last-of-type(1) {
    margin-right: 0 !important;
}
.nav-link::after {
    content: "";
    background-image: url("img/picsvg_download.svg");
    background-size: cover;
    background-position: left center;
    width: 0;
    height: 15px;
    display: block;
    object-fit: contain;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    transition: all .2s ease-in-out;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 125%;
}

.nav-link.active{
    color: var(--blue) !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 15px;
}

.navbarLogo {
    width: 175px;
    height: auto;
}


#hero {
    height: 100vh;
    /*background-color: #00FF85;*/
}

#hero::after{
    content: "";
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(51,51,51);
    background: linear-gradient(180deg, rgba(200,200,200,.7) 15%, rgba(51,51,51,0) 100%);
    z-index: 5;
}

#hero .swiper {
    width: 100%;
    height: 100%;
}

#hero .swiper-slide {
    height: 100%;
    padding: 150px;
    display: flex;
    justify-content: start;
    align-items: center;
}

#hero .swiper-slide .swiperImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#hero .swiper-slide > .container {
    position: relative;
    z-index: 2;
    font-size: 75px;
    font-weight: 600;
    /*width: min-content;*/
    text-align: start;
    text-shadow: 2px 2px var(--grey);
    color: var(--green);
}

#hero .swiper-slide > .container > div {
    width: min-content;
    line-height: 110%;
}

#hero .swiper-slide > .container > div > span {
    color: var(--white);
}

h1 {
    position: relative;
}

h1:not(.modal-title):not(footer h1)::after {
    content: "";
    background-image: url("img/picsvg_download.svg");
    background-size: 450px 75px;
    width: 450px !important;
    height: 75px;
    display: block;
    object-fit: contain;
    position: absolute;
    top: 20;
    left: 0;
}

section:not(footer section) {
    font-family: var(--fontPrimary);
}


#szolgaltatasok {
    min-height: 500px;
    padding: 100px 0;
    font-family: var(--fontPrimary);
    margin-bottom: 25px;
}

#szolgaltatasok .szolgaltatasBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    padding: 0 25px;
}

#szolgaltatasok .szolgaltatasBox .szolgaltatasIkonBox {
    height: 75px;
    width: 75px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}

#szolgaltatasok .szolgaltatasBox h3 {
    font-size: 27px;
}

#szolgaltatasok .szolgaltatasBox:hover .szolgaltatasIkonBox {
    transform: translateY(-25px);
    -webkit-box-shadow: 0px 10px 35px -6px rgba(0,255,133,0.75);
    -moz-box-shadow: 0px 10px 35px -6px rgba(0,255,133,0.75);
    box-shadow: 0px 10px 35px -6px rgba(0,255,133,0.75);
    color: var(--blue);
    /*background-color: #efefef;*/
}


#bemutatkozas {
    /*min-height: 1050px;*/
    background-color: var(--grey);
    padding: 150px 0;
    color: var(--white);
}

/*#bemutatkozas::after {
    content: "";
    background: rgb(238,238,238);
    background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(137,137,137,1) 50%, rgba(51,51,51,1) 100%);
    height: 150px;
    width: 100%;
    position: absolute;
    top: -100px;
    left: 0;
}*/

#bemutatkozas .bemutatkozasImgWrap {
    height: 350px;
    width: 350px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

#bemutatkozas .bemutatkozasImg {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#bubble1 {
	position: absolute;
	height: 100px;
	width: 100px;
	border-radius: 50%;
	background-color: white;
	background: linear-gradient(to left, #7e94bf, #88bfb0);
	box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.2);
    top: 0;
    left: -15px;
}

#bubble1:before {
	content: "";
	position: absolute;
	display: block;
	top: 5px;
	left: 7px;
	height: 90px;
	width: 90px;
	border-radius: 50%;
	background: #84b9bf;
	opacity: 0.8;
	overflow: hidden;
}

#bubble1:after {
	content: "";
	position: absolute;
	display: block;
	top: 25px;
	left: 70px;
	height: 25px;
	width: 9px;
	border-radius: 50%;
	background: white;
	overflow: hidden;
}

#bubble2 {
	position: absolute;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-color: white;
	background: linear-gradient(to left, #7e94bf, #88bfb0);
	box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.2);
    top: 5px;
    left: 65px;
    z-index: 2;
}

#bubble2:before {
	content: "";
	position: absolute;
	display: block;
	top: 5px;
	left: 7px;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	background: #84b9bf;
	opacity: 0.8;
	overflow: hidden;
}

#bubble2:after {
	content: "";
	position: absolute;
	display: block;
	top: 15px;
	left: 40px;
	height: 10px;
	width: 5px;
	border-radius: 50%;
	background: white;
	overflow: hidden;
}


#bubble3 {
	position: absolute;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: white;
	background: linear-gradient(to left, #7e94bf, #88bfb0);
	box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.2);
	bottom: 25px;
    right: 105px;
}

#bubble3:before {
	content: "";
	position: absolute;
	display: block;
	top: 5px;
	left: 7px;
	height: 23px;
	width: 23px;
	border-radius: 50%;
	background: #84b9bf;
	opacity: 0.8;
	overflow: hidden;
}

#bubble3:after {
	content: "";
	position: absolute;
	display: block;
	top: 15px;
	left: 24px;
	height: 8px;
	width: 4px;
	border-radius: 50%;
	background: white;
	overflow: hidden;
}

#bubble4 {
	position: absolute;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background-color: white;
	background: linear-gradient(to left, #7e94bf, #88bfb0);
	box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.2);
	bottom: 45px;
    right: 90px;
}

#bubble4:before {
	content: "";
	position: absolute;
	display: block;
	top: 5px;
	left: 7px;
	height: 23px;
	width: 23px;
	border-radius: 50%;
	background: #84b9bf;
	opacity: 0.8;
	overflow: hidden;
}

#bubble4:after {
	content: "";
	position: absolute;
	display: block;
	top: 15px;
	left: 25px;
	height: 8px;
	width: 4px;
	border-radius: 50%;
	background: white;
	overflow: hidden;
}

#bemutatkozas .bemutatkozasSzoveg {
    font-size: 20px;
    text-align: end;
}

.primaryButton {
    position: relative;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 5px 20px;
    background-color: var(--blue);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: min-content;
    color: var(--white);
    transition: all .3s ease-in-out;
}
/*.primaryButton::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;

}*/
.primaryButton:hover {
    background-color: var(--green);
    color: var(--grey);
}




#idezet {
    height: 600px;    
    /*background-image: url(img/idezetBg.jpg);
    background-size: cover;
    background-position: center center;*/
    padding: 0 25%;
    overflow: hidden;
}
#idezet::after {
    content: "";
    background-image: url(img/idezetBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(3.5px);
    object-fit: cover;
    z-index: 1;
}
#idezet > div {
    position: relative;
    z-index: 2;
}
#idezet .idezet {
    font-size: 45px;
    font-weight: 700;
    line-height: 110%;
    text-align: center;
    color: var(--white);
    text-shadow: 7px 4px 10px rgba(51,51,51,1);
}
#idezet .idezet span {
    color: var(--blue);
    font-size: 52px;
}
#idezet .ember {
    width: 100%;
    font-size: 25px;
    margin-top: 30px;
    font-weight: 700;
    line-height: 110%;
    text-align: end;
    color: var(--green);
    text-shadow: 7px 4px 10px rgba(51,51,51,1);
}




#referencia {
    height: 700px;
}

#kapcsolat {
    background-image: url(img/hero2.jpg);
    background-size: cover;
    min-height: 750px;
    color: var(--white);
    display: flex;
    align-items: center;
}
#kapcsolat::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #33333395;
    height: 100%;
    width: 100%;
    z-index: 0;
}
#kapcsolat > div {
    z-index: 1;
    position: relative;
}

#kapcsolat .kapcsolatInfoWrap {
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--grey);
    text-decoration: none !important;
    transition: all .3s ease-in-out;
    font-size: 18px;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(51,51,51,1);
    -moz-box-shadow: 0px 10px 25px 0px rgba(51,51,51,1);
    box-shadow: 0px 10px 25px 0px rgba(51,51,51,1);
}

#kapcsolat .kapcsolatInfoWrap:nth-last-of-type(1) {
    margin-bottom: 0 !important;
}

#kapcsolat .kapcsolatInfoWrap svg {
    margin-right: 10px;
    transition: all .3s ease-in-out;
}

#kapcsolat .kapcsolatInfoWrap:hover, #kapcsolat .mapImg:hover, #kapcsolat .mapLogo:hover + .mapImg {
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0,255,133,1);
    -moz-box-shadow: 0px 10px 25px 0px rgba(0,255,133,1);
    box-shadow: 0px 10px 25px 0px rgba(0,255,133,1);
}

#kapcsolat .kapcsolatInfoWrap:hover svg {
    margin-right: 20px;
    color: var(--blue);
}

#kapcsolat .mapImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(51,51,51,1);
    -moz-box-shadow: 0px 10px 25px 0px rgba(51,51,51,1);
    box-shadow: 0px 10px 25px 0px rgba(51,51,51,1);
    transition: all .3s ease-in-out;
    position: relative;
}

#kapcsolat .mapLogo {
    width: 40px;
    height: 40px;
    padding: 3px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    -webkit-box-shadow: 0px 8px 25px 0px rgba(51,51,51,1);
    -moz-box-shadow: 0px 8px 25px 0px rgba(51,51,51,1);
    box-shadow: 0px 8px 25px 0px rgba(51,51,51,1);
}

.modal {
    z-index: 5;
    position: relative;
}
.modal-backdrop.show {
    z-index: 1;
}


#galeria {
    min-height: 700px;
    padding-top: 50px;
    padding-bottom: 50px;
}
#galeria h1 {
    margin-bottom: 50px;
}

#galeria .row .galeriaCol {
    height: 350px;
    padding: 10px;
}
#galeria .magasKep {
    height: 700px !important;
}
#galeria .row .galeriaCol > a {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    transition: all .3s ease-in-out;
    -webkit-box-shadow: 0px 8px 25px 0px rgba(51,51,51,1);
    -moz-box-shadow: 0px 8px 25px 0px rgba(51,51,51,1);
    box-shadow: 0px 8px 25px 0px rgba(51,51,51,1);
    border-radius: 10px;
}
#galeria .row .galeriaCol > a::after {
    content: "\f00e";
    font-family: "FontAwesome";
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: #33333370;
    opacity: 0;
    transition: all .3s ease-in-out;
}
#galeria .row .galeriaCol > a:hover {
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0,255,133,1);
    -moz-box-shadow: 0px 10px 25px 0px rgba(0,255,133,1);
    box-shadow: 0px 10px 25px 0px rgba(0,255,133,1);
}
#galeria .row .galeriaCol > a:hover::after {
    opacity: 1;
}
#galeria .galeriaKep {
    object-fit: cover;
    width: 100%;
    /*height: auto;*/
    height: 100%;
}

/*#galeria .col-md-3 .galeriaKep, #galeria .col-md-6 > .col-md-6 .galeriaKep, #galeria .magasKep .galeriaKep{
    height: 100% !important;
    width: auto !important;
}*/








footer {
    background-color: var(--grey);
    color: var(--white);
    height: 500px;
}
footer .footerLogoWrap, footer .footerButtonWrap {
    width: min-content;
    transition: all .3s ease-in-out;
}
footer .footerLogoWrap:hover {
    transform: scale(1.1, 1.1);
}
footer .footerLogo {
    width: 300px;
    height: auto;
}
footer .primaryButton {
    background-color: var(--green);
    color: var(--grey);
    font-size: 18px;
    font-weight: 500;
}
footer .primaryButton:hover {
    background-color: var(--blue);
    color: var(--white);
}

footer .crWrap {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #777777;
}

footer .keyWordOuterWrap {
    color: #777777;
    text-align: center;
    margin-top: 50px;
}
footer .keyWordOuterWrap .keyWordTown {
    margin-bottom: 5px;
}
/*footer .keyWordOuterWrap span {
    margin: 0 5px;
}*/
footer .keyWordOuterWrap span:not(:nth-last-of-type(1))::after {
    content: "|";
    margin-left: 5px;
    color: #555555;
}

footer h2 {
    margin-top: 30px;
}
footer table {
    width: 100%;
    margin: 25px 0px;
    font-size: 18px;
    color: var(--grey);
    overflow: scroll;
}
footer table tr {
    background-color: #efefef;
    border: none !important;
}
footer table tr:nth-child(odd) {
    background-color: #eaeaea;
}
footer table th, footer table td {
    padding: 5px;
    width: 50%;
}
footer table a {
    color: var(--grey);
    font-weight: 600;
}

.modal {
    color: var(--grey);
}
.modal-body {
    padding: 0 !important;
}
.modal-body iframe {
    width: 100%;
    height: 100%;
}

#adatvedelemModal h2 {
    font-size: 25px;
}
#adatvedelemModal {
    font-size: 18px;
}

/*HAMBURGER ICON
*/

#nav-icon3 {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 200;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    cursor: pointer;
    border-radius: 0px;
    background-color: transparent;
    margin-left: 60px;
    /*right: 15px;
    top: 10px;*/
    /*top:-42px;*/
    outline: none !important;
    border-radius: 5px;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    z-index: 203;
    height: 4px;
    width: 30px;
    background: var(--grey) !important;
    border-radius: 0px;
    opacity: 1;
    left: 8px;
    border-radius: 5px;
    -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-icon3:after {
    content: "";
    border-radius: 5px;
    position: absolute;
    left: -2px;
    right: -2px;
    top: -2px;
    bottom: -2px;
    z-index: 202;
}

#nav-icon3.navbar-toggle:hover,
#nav-icon3.navbar-toggle:focus {
    background-color: transparent;
    border: 1px solid #454545 !important;
    outline: none !important;
}

#nav-icon3.navbar-toggle:hover span,
#nav-icon3.navbar-toggle:focus span {
    background: #454545 !important;
    outline: none !important;
}


#nav-icon3 span:nth-child(1) {
    top: 8px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 22px;
}

#nav-icon3 span:nth-child(4) {
    top: 34px;
}

#nav-icon3.open span:nth-child(1) {
    top: 22px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 22px;
    width: 0%;
    left: 50%;
}






@media (max-width: 1399.98px) {
    #kapcsolat .kapcsolatInfoWrap {
        font-size: 16px;
    }

    #bubble3 {
        bottom: 5px;
        right: 80px;
    }
    #bubble4 {
        bottom: 25px;
        right: 65px;
    }
}

@media (max-width: 1199.98px) {
    #hero .swiper-slide > .container {
        font-size: 60px;
    }

    #idezet .idezet {
        font-size: 40px;
    }
    #idezet .idezet span {
        font-size: 45px;
    }

    #kapcsolat .kapcsolatInfoWrap {
        font-size: 17px;
    }

    /*#galeria .galeriaKep {
        height: 100%;
        width: auto;
    }*/
}

@media (max-width: 991.98px) {
    .collOpened {
        background-color: var(--bg);
    }
    .navbar-collapse {
        position: fixed;
        top: 80px;
        background-color: #fff;
        width: 100%;
        left: 0;
        /*padding: 0 50px;*/
    }
    .nav-link::after {
        content: unset;
    }
    .nav-link:hover {
        color: var(--blue);
    }

    #bemutatkozas .bemutatkozasSzoveg {
        font-size: 17px;
    }

    #idezet {
        padding: 0 15%;
    }

    /*#galeria .galeriaKep, #galeria .col-md-3 .galeriaKep, #galeria .col-md-6 > .col-md-6 .galeriaKep, #galeria .magasKep .galeriaKep {
        height: auto !important;
        width: 100% !important;
    }*/
}

@media (max-width: 767.98px) {
    #idezet .idezet {
        font-size: 30px;
    }
}