@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

/* ------------- Main setup ----------- */
html{
    font-size: 10px;
}
html, body{
    font-family: 'Montserrat', sans-serif;
    color:#2C3489;
    background-color: #fff;
}
body{
    overflow-y: scroll;
    font-size: 1.4rem;
    line-height: 1.55;
    min-height: 100vh;
    position: relative;
}
p{
    line-height: 1.3;
}
.grecaptcha-badge{
    right: -999px !important;
}
.b-blue{
    background-color: #23c4f4;
}
.b-gray{
    background-color: #e2e7ea;
}
.b-white{
    background-color: #fff;
}
.t-blue{
    color: #23c4f4;
}
.t-white{
    color: #fff;
}
.t-ddblue{
    color: #1b1b29;
}
.t-shadow{
    text-shadow: #000 1px 0 10px;
}
a{
    text-decoration: none;
}
.f-m{
    font-weight: 500;
}
.fs-i{
    font-style: italic;
}
.f-sb{
    font-weight: 600;
}
.f-b{
    font-weight: 700;
}
.f-eb{
    font-weight: 800;
}
.f-9{
    font-size: 0.9rem;
}
.f-10{
    font-size: 1rem;
}
.f-11{
    font-size: 1.1rem;
}
.f-14{
    font-size: 1.4rem;
}
.f-16{
    font-size: 1.6rem;
}
.f-20{
    font-size: 2rem;
}
.f-22{
    font-size: 2.2rem;
}
.f-30{
    font-size: 3rem;
}
.f-md{
    font-size: 6vw;
}
.f-xl{
    font-size: 9.5vw;
}
.mb-17{
    margin-bottom: 1.7rem;
}
.mb-30{
    margin-bottom: 3rem;
}
.mb-40{
    margin-bottom: 4rem;
}
.mb-60{
    margin-bottom: 6rem;
}
.mt-60{
    margin-top: 6rem;
}
.mb-60{
    margin-bottom: 6rem;
}
form{
    width: 100%;
}
.btn{
    width: 178px;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 0;
    border: none;
}
.btn-vera-blue{
    color: #fff;
    border: 1px solid #1fc3f3 !important;
    background-color: #1fc3f3 !important;
}
.btn-vera-blue:hover,
.btn-vera-blue:active,
.btn-vera-blue:focus{
    color: #fff;
    border: 1px solid #1881a2 !important;
    background-color: #1881a2 !important;
}
.btn-vera-black{
    color: #fff;
    border: 1px solid #1b1b29 !important;
    background-color: #1b1b29 !important;
}
.btn-vera-black:hover,
.btn-vera-black:active,
.btn-vera-black:focus{
    color: #fff;
    border: 1px solid #000 !important;
    background-color: #000 !important;
}
.form-control{
    border-radius: 20px;
}
.form-control:focus{
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 0px;
    background-color: rgb(255,255,255);
}
.page-link:focus,
button:focus,
.btn:focus{
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 0px;
    border: none;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: initial;
}
.pointer{
    cursor: pointer;
}
.clearfix{
    clear: both;
}
.carousel-control-prev-icon {
    background-image: url('/img/arrow_left.svg');
}
.carousel-control-next-icon {
    background-image: url('/img/arrow_right.svg');
}

/* customziation */
.video_container iframe{
    width: 100%;
    height: 49vw;
    border-radius: 4px;
    display: block;
}

/* header */

#header{
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
    color: #fff;
    min-height: 38px;
    font-size: 1.3rem;
    transition: top .4s ease-in-out;
    box-shadow: -5px 0.5em 1em rgba(0,0,0,0.1);
}
#header:before{
    content: "";
    position: absolute;
    background-image: url('/img/invert_round.svg?v=1.6');
    height: 50px;
    width: 50px;
    right: -1px;
    bottom: -50px;
    background-size: contain;
}

.navbar-collapse{
    transition: right .4s ease-in-out;
    display: block !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    background-color: #23c4f4;
    box-shadow: -5px 0.5em 1em rgba(0,0,0,0.1);
    border-bottom-left-radius: 40px;
}
.navbar-collapse.collapsing, .navbar-collapse.show{
    height: auto;
    overflow: visible;
    transition: right .4s ease-in-out;
    display: block !important;
    right: 0;

}
.nav-container{
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    padding-top: 17vh;
    padding-left: 30px;
    padding-right: 24px;
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.navbar-brand{
    margin-top: 11px;
    margin-bottom: 11px;
    margin-left: 16px;
    max-width: 100px;
}
.navbar-collapse a{
    color: #fff;
}
.navbar-nav .nav-link{
    text-transform: uppercase;
    color: #fff;
    padding-top: 4px;
    padding-bottom: 4px;
}
.navbar a.active{
    color: #06a8d9 !important;
}

/* Burger menu */
.navbar-toggler {
    border: none;
    position: absolute;
    top: 16px;
    right: 23px;
    border-radius: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .line {
    fill: none;
    stroke: rgb(0,0,0);
    stroke-width: 8;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-toggler .line1 {
    stroke-dasharray: 66 250;
}
.navbar-toggler .line2 {
    stroke-dasharray: 66 0;
}
.navbar-toggler .line3 {
    stroke-dasharray: 66 207;
}
.navbar-toggler.opened .line1 {
    stroke-dasharray: 66 190;
    stroke-dashoffset: -186;
}
.navbar-toggler.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}
.navbar-toggler.opened .line3 {
    stroke-dasharray: 67 189;
    stroke-dashoffset: -128;
}
.menu-contact{
    line-height: 1.7;
}
.menu-contact hr{
    border-top: 3px solid #fff;
    width: 30px;
    opacity: 1;
    margin-top: 18px;
    margin-bottom: 14px;
}
.lang-slector{
    display: flex;
    position: absolute;
    top: 32px
}
.lang-slector a{
    padding-left: 5px;
    padding-right: 5px;
    border-right: 1px solid white;
}
.lang-slector a:first-child{
    padding-left: 0;
}
.lang-slector a:last-child{
    padding-right: 0;
    border-right:none;
}

.social-links{
    padding-top: 15px;
}
.social-links nav{
    max-width: 175px;
    display: flex;
    justify-content: space-between;
}
.social-links a{
    vertical-align: bottom;
    text-align: center;
    display: inline-block;
    width: 31px;
    line-height: 20px;
    padding-top: 6px;
    padding-bottom: 3px;
    background-color: white;
    border-radius: 50%;
}
.social-links a i{
    color: #23c4f4;
    font-size: 20px;
}
.social-links a.fb{
    padding-bottom: 0;
    padding-top: 5px;
}
.social-links a.fb i{
    font-size: 24px;
    position: relative;
    bottom: -3px;
}

/* Contetnt */
section.hero{
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    background-image: url('../img/hero_bg.jpg?v=0.2');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    min-height: calc(100vh + 1px);
    /* min-height: calc((var(--vh, 1vh) * 100) + 50px); */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 98px;
    margin-bottom: -50px;
}
section.hero .gradinet{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70vh;
    background: rgba(0,0,0,0.8);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
section.hero.szolgaltatasok{
    background-image: url('../img/szolgaltatasok_bg.jpg?v=0.4');
    background-position: 37% top;
    background-size: cover;
}
.hero-text{
    color: #fff;
    position: static;
    z-index: 2;
}
#services{
    scroll-margin: 60px;
}
.services{
    z-index: 3;
    position: relative;
}
.service{
    border-top-right-radius: 50px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    color: #1b1b29;
    padding-top: 46px;
    padding-bottom: 98px;
    margin-bottom: -50px;
}
.service:last-of-type{
    padding-bottom: 64px;
    margin-bottom: 0;
}
.service hr {
    border-top: 6px solid #fff;
    width: 104px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    margin-top: 22px;
    margin-bottom: 41px;
}
hr.blue{
    border-top-color: #23c4f4;
}

.service_categories{
    min-height: calc(100vh + 100px);
    min-height: calc((var(--vh, 1vh) * 100) + 100px);
    z-index: 1;
    position: sticky;
    text-align: center;
}
.service_category{
    background-color: #fff;
    border-top-right-radius: 50px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 120px solid #1b1b29;
    margin-bottom: -50px;
}
.service_category:last-of-type{
    border-bottom: 0;
    margin-bottom: 0;
}
.service_category h2{
    font-size: 1.8rem;
    font-weight:500;
    font-style: italic;
    margin-bottom: 1px;
}
.service_category h3{
    font-size: 1.5rem;
    font-weight: 700;
}
.service_category hr {
    border-top: 6px solid #23c4f4;
    width: 104px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    margin-top: 18px;
    margin-bottom: 16px;
}
.service_category .carousel-control-next, 
.service_category .carousel-control-prev{
    width: 6%;
    align-items: flex-start;
    margin-top: 107px;
}
.service_category p{
    font-size: 1.2rem;
}
.service_category .carousel{
    padding-bottom: 40px;
}
.service_category .carousel-item{
    padding-left: 40px;
    padding-right: 40px;
}
.service_category .carousel-inner{
    min-height: 270px;
}

section.hero.megrendelok{
    background-image: url('../img/megrendelok_bg.jpg?v=0.2');
    background-position: 33% 0;
    background-size: cover;
    padding-left: 25px;
    padding-right: 25px;
    min-height: calc(100vh + 30px); 
    /* min-height: calc((var(--vh, 1vh) * 100) + 50px); */
    padding-bottom: 98px;
    margin-bottom: -50px;
}
#feedbacks{
    border-top-right-radius: 50px;
    background-color: #e2e7ea;
    padding: 30px;
    z-index: 1;
    position: relative;
    padding-bottom: 80px;
    margin-bottom: -50px;
}
.feedback{
    background-color: #fff;
    padding: 20px;
    color: #1b1b29;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
    margin-bottom: 30px;
}
.feedback h2{
    font-size: 2rem;
    margin-bottom: 15px;
}
.feedback-links{
    margin-top: 15px;
}
.feedback-links a{
    vertical-align: bottom;
    text-align: center;
    display: inline-block;
    width: 31px;
    line-height: 20px;
    padding-top: 7px;
    padding-bottom: 4px;
    background-color: #23c4f4;
    border-radius: 50%;
    margin-right: 4px;
}
.feedback-links a i{
    color: #fff;
    font-size: 16px;
}
.feedback-links a.fb{
    padding-bottom: 0;
    padding-top: 5px;
}
.feedback-links a.fb i{
    font-size: 24px;
    position: relative;
    bottom: -3px;
}

.kapcsolat{
    overflow: hidden;
    position: relative;
    background-color: #23c4f4;
    min-height: calc(100vh);
    min-height: calc(var(--vh, 1vh) * 100);
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 148px;
    padding-bottom: 50px;
}
.kapcsolat-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 198px);
    min-height: calc((var(--vh, 1vh) * 100) - 198px);
}
.kapcsolat::before{
    content: '';
    position: absolute;
    right: 18px;
    bottom: 0;
    width: 80vw;
    height: 49vh;
    background-image: url('/img/phone.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.kapcsolat-links p{
    margin-bottom: 19px;
}
.kapcsolat-links a{
    vertical-align: bottom;
    text-align: center;
    display: inline-block;
    width: 39px;
    line-height: 25px;
    padding-top: 6px;
    padding-bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 16px;
}
.kapcsolat-links a i{
    color: #23c4f4;
    font-size: 25px;
}
.kapcsolat-links a.fb{
    padding-bottom: 0;
    padding-top: 6px;
}
.kapcsolat-links a.fb i{
    font-size: 29px;
    position: relative;
    bottom: -4px;
}
.kapcsolat-links.link_sm a{
    width: 31px;
    line-height: 20px;
    margin-right: 5px;
}
.kapcsolat-links.link_sm a i{
    font-size: 20px;
}
section.hero.rolunk{
    justify-content: flex-end;
    padding-top: 120px;
    background-image: url('../img/rolunk_bg.jpg?v=0.2');
    background-position: 45% 0;
    background-size: cover;
}
.rolunk-content{
    border-top-right-radius: 50px;
    background-color: #fff;
    padding: 30px;
    z-index: 1;
    position: relative;
}

/* footer */
footer{
    position: relative;
    background-color: rgb(0, 163, 218);
    border-top-right-radius: 50px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    z-index: 9;
}
footer:before {
    content: "";
    position: absolute;
    --svg: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45.81 45.81"><path fill="rgb(0, 163, 218)" d="M45.81,45.81V0H0A45.81,45.81,0,0,1,45.81,45.81Z"/></svg>');
    background-image: var(--svg);
    height: 50px;
    width: 50px;
    left: 0;
    top: -49px;
    z-index: 10;
    transform: rotate(180deg);
}
.footer_mobile{
    padding-top: 66px;
    padding-bottom: 120px;
}
.footer_mobile .social-links nav {
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.footer_mobile .social-links a{
    margin-left: 6px;
    margin-right: 6px;
}
.scrollup {
    background-color: #1A83FB;
    color: #ffffff;
    display: none;
    float: right;
    line-height: 1.2;
    padding: 6px 12px;
    position: fixed;
    bottom: 12px;
    right: 12px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
}
.scrollup i:hover{
    animation: bounce 1.5s;
}

.animacion_wrapper{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 500;
    min-height: calc(100vh);
    min-height: calc(var(--vh, 1vh) * 100);
    height: calc(100vh);
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    opacity: 1;
    animation-delay: 4.7s;
    animation-name: opacity;
    animation-duration: 1s;
    animation-iteration-count: 1;
}
.animacion{
    width: 65%;
    height: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;

}
.animacion svg{
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.body_overlay{
    position: fixed;
    left: 0;
    right: 0;
    bottom: -72px;
    background-color: #1b1b29;
    border-top-right-radius: 50px;
    height: 72px;
    animation-delay: 3.5s;
    animation-name: dispay;
    animation-duration: 1.5s;
}

@keyframes dispay {
    0% {
        height: 72px;
    }
    100% {
        height: calc(var(--vh, 1vh) * 100);
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
}
.scrollup.show{
    display: inline-block;
}
.scrollup i {
    color: #fff;
    font-size: 32px;
}


/* ------------------- Index ------------------- */

@media (min-width: 500px) { 

}

/* `sm` applies to x-small devices */
@media (min-width: 576px) { 

    .service_category .carousel{
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .service_category h2 {
        font-size: 2rem;
    }
    .service_category h3 {
        font-size: 1.7rem;
    }
    .service_category p {
        font-size: 1.4rem;
    }

    .feedbacks-wrapper{
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

}

/* `md` applies to small devices */
@media (min-width: 768px) {
    
}

@media (max-width: 992px) {
    .rolunk-content .splide{
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .splide__slide{
        margin-bottom: 40px;
    }
    .splide__slide__container{
        display: flex;
        height: 120px !important;
        justify-content: center;
    }
    .splide__slide__container__text{
        text-align: center;
        color: #1b1b29;
    }
    .splide__slide__container__text h2{
        font-size: 2.2rem;
        font-weight: 700;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .splide__slide__container__text p{
        font-size: 1.4rem;
        font-weight: 500;
    }
}

/* `lg` applies to medium devices */
@media (min-width: 992px) {
    html,
    body{
        scroll-snap-type: y mandatory;
    }
    .btn {
        width: 260px;
        font-size: 2.6rem;
        padding: 7px 16px;
    }
    .mt-lg-50{
        margin-top: 5rem;
    }
    .mt-lg-100{
        margin-top: 10rem;
    }
    .mb-lg-40{
        margin-bottom: 4rem;
    }
    .mb-lg-100{
        margin-bottom: 10rem;
    }
    .f-lg-14{
        font-size: 1.4rem;
    }
    .f-lg-22{
        font-size: 2.2rem;
    }
    .f-lg-25{
        font-size: 2.5rem;
    }
    .f-lg-37{
        font-size: 3.7rem;
    }
    .f-lg-45{
        font-size: 4.5rem;
    }
    .f-lg-50{
        font-size: 5rem;
    }
    .f-lg-65{
        font-size: 6.5rem;
    }
    .f-lg-m{
        font-weight: 500;
    }
    .t-lg-white{
        color: #fff;
    }
    #header:before {
        height: 100px;
        width: 100px;
        right: 0;
        bottom: -99px;
    }
    .navbar-brand{
        max-width: 110px;
        margin-top: 24px;
        margin-bottom: 31px;
        margin-left: 4px;
    }
    body.scroll .navbar-brand{
        margin-top: 4px;
        margin-bottom: 6px;
    }
    .navbar{
        max-width:1200px;
        margin: 0 auto;
        padding-right: 16px;
    }
    .navbar-collapse{
        display: block !important;
        position: static;
        background-color: white;
        justify-content: flex-end;
        box-shadow: none;
    }
    .nav-container{
        min-height: auto;
        height: auto;
        padding: 0;
        flex-direction: row-reverse;
        align-items: center;
    }
    .lang-slector{
        position: static;
    }
    .lang-slector a{
        border-right-color: #000;
    }
    .navbar-nav{
        padding-right: 57px;
    }
    .nav-item{
        padding-right: 13px;
    }
    .navbar-nav .nav-link,
    .navbar-collapse a{
        color: #1b1b29;
    }
    .navbar-nav .nav-link:hover,
    .navbar-collapse a:hover{
        color: #bdccd4;
    }
    section.hero{
        padding-bottom: 130px;
        padding-top: 90px;
        justify-content: center;
        margin-bottom: -100px;
        /* min-height: calc(100vh + 100px); */
        min-height: calc((var(--vh, 1vh) * 100) + 100px);
    }
    .hero-text{
        width: 100%;
        max-width: 1200px;
        padding-left: 7px;
        padding-right: 7px;
        margin: 0 auto;
    }
    .hero-text > *{
        max-width: 700px;
    }
    .services{
        min-height: calc(100vh - 62px);
        min-height: calc((var(--vh, 1vh) * 100) - 62px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .service{
        border-top-right-radius: 100px;
        margin-bottom: -100px;
        text-align: start;
        transition: all .4s ease-in-out;
    }
    .service hr{
        border-top: 12px solid #23c4f4;
        margin-left: 0;
        transition: width .4s ease-in-out;
    }
    .service:first-of-type hr{
        border-top: 12px solid #fff;
    }
    .service .row{
        max-width: 1200px;
        margin: 0 auto;
    }
    .service:last-of-type {
        padding-bottom: 0px;
    }
    .service.open{
        flex-grow: 1;
        display: flex;
        align-items: center;
    }
    .service.open hr{
        width: 208px;
    }
    .service:not(.open){
        cursor: pointer;
    }
    .service:not(.open) .col-12:nth-child(2){
        display: none;
    }
    .service:not(.open) .col-12:nth-child(1){
        width: 100%;
    }
    .service:not(.open) .col-12:nth-child(1) br{
        display: none;
    }
    .hero, .services, footer{
        scroll-snap-type: y mandatory;
        scroll-snap-align: end;
        scroll-snap-stop: always;
    }
    .hero{
        scroll-snap-align: start;
    }

    .hero.szolgaltatasok{
        /* min-height: calc(100vh); */
        min-height: calc(var(--vh, 1vh) * 100);
        padding-top: 0;
        padding-top: 80px;
        background-position: center top;
        padding-bottom: 130px;
        margin-bottom: -110px;
    }

    .hero.szolgaltatasok hr {
        border-top: 12px solid #23c4f4;
        width: 192px;
        margin-right: auto;
        opacity: 1;
        margin-top: 33px;
        margin-bottom: 48px;
    }
    .hero.szolgaltatasok .hero-text > *{
        max-width: 600px;
    }
    .service_categories{
        scroll-snap-type: y mandatory;
        scroll-snap-align: end;
        border-top-right-radius: 100px;
        min-height: calc(100vh);
        height: calc(100vh);
        overflow-y: scroll;
        position: relative;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow: -moz-scrollbars-none;
    }
    .service_categories::-webkit-scrollbar{
        display: none;
        width: 0 !important
    }
    body.scroll .service_categories{
        padding-top: 62px;
    }
    body.scroll .hero.szolgaltatasok{
        /* padding-bottom: 130px;
        margin-bottom: -170px; */
    }
    .service_categories_header{
        background-color: #e2e7ea;
        border-top-right-radius: 96px;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
    }
    .service_categories_wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 110px;
        max-width: 1230px;
        padding-left: 20px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    .service_categories_wrapper h1{
        margin-bottom: 0;
    }
    .service_categories_wrapper .nav-link{
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        padding: 1px;
        width: 39px;
        text-align: center;
        border-radius: 50%;
        border: 3px solid #fff;
        margin-left: 6px;
    }
    .service_categories_wrapper .nav-link.active,
    .service_categories_wrapper .nav-link:hover{
        background-color: #24c4f4;
        border-color: #24c4f4;
    }
    .service_category{
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 1230px;
        padding-top: 82px;
        padding-left: 20px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        border-bottom:0;
        height: calc(100vh - 172px);
        overflow: hidden;
        scroll-snap-type: y mandatory;
        scroll-snap-align: end;
        scroll-snap-stop: always;
        margin-top: 180px;
    }
    .service_category .carousel{
        max-width: 100%;
        margin-left: initial;
        margin-right: initial;
        flex-grow: 1;
        padding-bottom: 0;
    }
    .service_category .carousel-control-prev,
    .service_category .carousel-control-next{
        display: none;
    }
    .service_category .carousel-inner{
        overflow: visible;
        position: relative;
        height: 100%;
    }
    .service_category .carousel-item{
        display: block;
        padding-left: 0;
        float: none;
        margin-right: 0;
        max-width: 460px;
        position: static;
    }
    .service_category .carousel-item .service_subtitle{
        color: #bdccd4;
        cursor: pointer;
    }
    .service_category .carousel-item hr{
        margin-top: 10px;
        margin-bottom: 40px;
        transition: all .6s ease-in-out;
        border-top: 7px solid transparent;
        width: 0;
        margin-left: 0;
    }
    .service_category .carousel-item .service_subtitle h2{
        font-size: 1.8rem;
    }
    .service_category .carousel-item .service_subtitle h3{
        font-size: 1.4rem;
    }
    .service_category .carousel-item .service_text{
        position: absolute;
        right: 0;
        top: 0;
        margin-left: 460px;
        display: none;
        font-size: 1.8rem;
        font-weight: 500;
        min-height: none;
    }
    .service_category .carousel-item.active .service_text{
        display: block;
    }
    .service_category .carousel-item.active .service_subtitle{
        color: #1b1b29;
    }
    .service_category .carousel-item.active hr{
        border-top: 7px solid #23c4f4;
        width: 48px;
    }
    .category_art{
        margin-top: -100px;
        max-width: 740px;
        margin-left: auto;
        padding-right: 0px;
    }
    .service_title{
        display: flex;
        text-align: left;
        align-items: center;
    }
    .service_title span{
        display: inline-block !important;
        font-size: 2.9rem;
        color: #000;
        font-weight: bold;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        text-align: center;
        padding: 7px;
        border: 4px solid #000;
        margin-right: 24px;
    }
    .service_title br{
        display: none;
    }

    .hero.megrendelok{
        /* min-height: calc(100vh); */
        min-height: calc(var(--vh, 1vh) * 100);
        padding-top: 45px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .hero.megrendelok hr {
        border-top: 12px solid #23c4f4;
        width: 192px;
        margin-right: auto;
        opacity: 1;
        margin-top: 58px;
        margin-bottom: 60px;
    }
    .hero.megrendelok .hero-text > *{
        max-width: 600px;
    }
    #feedbacks{
        position: relative;
        min-height: calc((100vh) + 100px);
        min-height: calc((var(--vh, 1vh) * 100) + 100px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 60px;
        padding-bottom: 180px;
        padding-bottom: 80px;
        margin-bottom: -100px;
        scroll-snap-type: y mandatory;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        overflow: hidden;
    }
    #feedbacks::before{
        content: '';
        position: absolute;
        right: -100px;
        top: 120px;
        width: 18vw;
        height: 25vw;
        background-image: url('/img/q_mark.svg');
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 0;
    }
    #feedbacks::after{
        content: '';
        position: absolute;
        left: -20px;
        bottom: 0;
        width: 30vw;
        height: 30vw;
        background-image: url('/img/q_mark.svg');
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 0;
    }
    .feedbacks-wrapper{
        position: relative;
        z-index: 2;
        max-width: 1318px;
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
    }
    .feedbacks-container{
        display: flex;
        flex-wrap: wrap;
    }
    .feedback{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 0 0 auto;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
    }
    .kapcsolat::before{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 80vh;
        background-image: url('/img/phone_desktop.svg');
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
    }
    .kapcsolat::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 45vw;
        height: 45vh;
        background-image: url('/img/phone_line.svg');
        background-position: top left;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
    }
    .kapcsolat-text{
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: row;
        align-items: center;
    }
    .kapcsolat-text > *{
        max-width: 500px;
    }
    section.hero.rolunk{
        justify-content: flex-start;
        padding-top: 25vh;
    }

    .hero.rolunk hr {
        border-top: 12px solid #23c4f4;
        width: 192px;
        margin-right: auto;
        opacity: 1;
        margin-top: 58px;
        margin-bottom: 60px;
    }
    .hero.rolunk .hero-text > *{
        max-width: 700px;
    }

    .rolunk-content{
        position: relative;
        /* min-height: calc((100vh) + 100px); */
        min-height: calc((var(--vh, 1vh) * 100) + 100px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        scroll-snap-type: y mandatory;
        scroll-snap-align: end;
        scroll-snap-stop: always;
        overflow: hidden;
        padding-top: 195px;
    }

    .splide{
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 80px);
        max-width: 1318px;
    }
    .splide__slide__container{
        background-size: 70% !important;
        background-position: bottom center !important;
    }
    .splide__slide__container__text{
        text-align: center;
        color: #1b1b29;
    }
    .splide__slide__container__text h2{
        font-size: 3.0rem;
        font-weight: 700;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .splide__slide__container__text p{
        font-size: 1.8rem;
        font-weight: 500;
    }
    .splide__arrow,
    .splide__arrow:focus{
        width: 37px;
        height: 37px;
        background-color: transparent;
        border: solid 2px #1b1b29;
        opacity: 1;
    }
    .splide .splide__arrow svg {
        fill: #1b1b29;
        width: 16px;
        height: 16px;
    }
    .splide__arrow--prev{
        left: -40px;
    }
    .splide__arrow--next{
        right: -40px;
    }


    footer:before {
        height: 100px;
        width: 100px;
        left: 0;
        top: -99px;
    }
    footer {
        font-weight: 600;
        text-align: start;
        border-top-right-radius: 100px;
    }
    footer hr{
        border-top: 3px solid #fff;
        width: 30px;
        opacity: 1;
        margin-top: 18px;
        margin-bottom: 14px; 
    }
    footer nav a{
        padding-top: 4px;
        padding-bottom: 4px;
        display: block;
    }
    footer a{
        color: #fff;
    }
    footer .container-fluid{
        max-width: 1200px;
    }
    .footer_notes{
        padding-top: 17px;
        margin-bottom: 60px;
    }

    .body_overlay{
        bottom: -108px;
        border-top-right-radius: 100px;
        height: 108px;
    }
    
    @keyframes dispay {
        0% {
            margin-top: 0;
            height: 108px;
        }
        100% {
            height: calc(100vh);
            height: calc((var(--vh, 1vh) * 100));
        }
    }

}

/* `xl` applies to large devices */
@media (min-width: 1200px) {
    .splide__slide__container__text h2{
        font-size: 3.6rem;
        font-weight: 700;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .splide__slide__container__text p{
        font-size: 2.2rem;
        font-weight: 500;
    }
}

/* `xxl` applies to x-large devices */
@media (min-width: 1400px) {
    .service_category .carousel-item .service_text{
        font-size: 2.2rem;
    }
    .service_category .carousel-item .service_subtitle h2 {
        font-size: 2.2rem;
    }
    .service_category .carousel-item .service_subtitle h3 {
        font-size: 1.8rem;
    }

}

@media (min-width: 1500px) { 

}

@media (min-width: 1600px) { 

    
}
@media (min-width: 1750px) { 

}

@media (min-width: 1750px) { 

}

@media (min-width: 1900px) { 
    .navbar{
        max-width:1440px;
    }
    .hero-text{
        max-width: 1440px;
    }
    .service .row{
        max-width: 1440px;
    }
    footer .container-fluid{
        max-width: 1440px;
    }
    .service_categories_wrapper{
        max-width: 1440px;
        padding-left: 0px;
        padding-right: 10px;
    }
    .service_category{
        max-width: 1440px;
        padding-left: 0px;
        padding-right: 10px;
    }
}

@media (min-width:992px) and (max-height:820px){
    .mb-60 {
        margin-bottom: 3rem;
    }
    .f-lg-14{
        font-size: 1.4rem;
    }
    .f-lg-22{
        font-size: 1.8rem;
    }
    .f-lg-25{
        font-size: 2rem;
    }
    .f-lg-37{
        font-size: 2.7rem;
    }
    .f-lg-65{
        font-size: 4.5rem;
    }
    .service {
        padding-top: 2.6rem;
    }

}