.navbar-brand img{
    max-width: 200px;
}
.form-control{
    margin: 10px 0px;
}
.map-responsive {
    overflow: hidden;
    position: relative;
    height: 350px;
    width: 100% !important;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

body.not-main-page {
    background: linear-gradient(-45deg, #121212, #232323, #031a18, #052b28);
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.main-navbar-nav.navbar-nav .nav-item:first-child{
    border-left: 0;
}
.main-navbar-nav.navbar-nav .nav-item{
    border-left: 2px solid #a37b47;
    padding-left: 12px;
    padding-right: 12px;
    height: 20px;
    line-height: 20px;
    font-size: 10pt;
    align-content: center;
    align-items: center;
    display: flex;
}
.main-navbar-nav.navbar-nav .nav-item .nav-link{
    padding: 0px;
}
.main-navbar-nav{
    flex-grow: 1;
    justify-content: center;
}
.main-navbar-nav.navbar-nav .nav-item .nav-link.active{
    color: #b68c5a;
    font-weight: bold;
}
.main-navbar{
    border-bottom: 1px solid #433728;
}
.navbar-help{
    padding-right: 10px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}
.navbar-help-question{
    font-size: 10pt;
    font-weight: bold;
    display: flex;
}
.navbar-help-phone{
    color: #b68c5a;
    font-size: 14pt;
    font-weight: bold;
    display: flex;
}
.main-navbar-nav .social-icon{
    font-size: 20pt;
    color: #b68c5a !important;
}
.main-welcome{
    background-image: url('../site/img/hsloffice-main-welcome-bg.png');
}
.main-welcome-bg{
    background-color: rgba(4, 25, 24, 0.8);
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-content: center;
}
.main-welcome-image{
   /* padding: 25px;*/
}
.main-welcome-image img{
    width: 100%;
    height: auto;
    border-radius: 25px;
}
.main-welcome-content{
    padding-top: 25px;
    /*padding-left: 25px;
    padding-right: 25px;

    padding-bottom: 25px;
     */
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
.main-welcome-content h1{
    font-size: 1.5rem;
    font-weight: normal;
    /*display: flex;*/
    flex: 1;
}
.main-welcome-content h2{
    color: #fff;
    display: flex;
    flex: 1;
    font-size: 2.3rem;
    line-height: 2.6rem;
}
.main-welcome-content h3{
    font-size: 1.2rem;
    font-weight: normal;
    display: flex;
    flex: 1;
    line-height: 1.6rem;
}
.main-skills{
    background-color: #242c2e;
    padding-top: 15px;
    padding-bottom: 15px;
}
.main-skills h2{
    font-size: 1.2rem;
}
.main-skills p{
    font-weight: bold;
}
.main-skills-col{
    position: relative;
}
.main-skills-col:first-child:after{
    display: none !important;
}
.main-skills-col:after{
    content: "";
    height: 80px;
    width: 1px;
    border-right: 1px solid #b68c5a;
    display: block;
    position: absolute;
    left: 0px;
    bottom: 20px;
}
.main-services-card{
    background-color: #242c2e;
    border-radius: 25px;
    padding: 15px;
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.main-service-image{
    position: relative;
    padding: 15px;
}
.main-service-image:after{
    content: "";
    width: 80px;
    height: 1px;
    border-bottom: 1px solid #b68c5a;
    display: block;
    position: absolute;
    left: calc(50% - 40px);
    bottom: 0px;
}
.main-service-content{
    padding: 15px;
}
.main-service-content a{
    font-size: 1.2rem;
    font-weight: bold;
}
@media (max-width: 768px) {
    .main-service-content a {
        font-size: 0.9rem;
    }
    .mobile-text-center{
        text-align: center !important;
    }
}
.main-video-player{
    width: 100%;
    height: auto;
    border-radius: 25px;
    margin-top: 10px;
}
.main-video-container {
    position: relative;
    width: 100%;
    height: auto; /* A megadott stílus */
    border-radius: 25px; /* A megadott stílus */
    margin-top: 25px; /* A megadott stílus */
    overflow: hidden; /* Ez elrejti a lekerekített sarkokon kívüli részeket */
}

/* Ez a stílus a videó belsejében lévő lejátszót formázza */
.main-video-container video {
    width: 100%;
    height: auto;
    display: block; /* Fontos, hogy ne legyen extra hely a videó alatt */
}

.main-video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.main-video-play-button:hover::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -2px;
    right: -11px;
    bottom: -7px;
    border: 1px solid #b68c5a;
    border-radius: 50%;
}

.main-video-play-button svg {
    position: relative;
    left: 4px;
}
.main-video-overlay-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
    pointer-events: none;
    z-index: 2;
    font-size: 1.2rem;
}
.main-video-mute-button {
    position: absolute;
    top: 20px; /* Igazítás a felső széléhez */
    right: 10px; /* Igazítás a jobb széléhez */
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8); /* Átlátszó háttér */
    border-radius: 50%; /* Kerek gomb */
    display: none; /* Alapértelmezett állapot: rejtett */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3; /* Győződjön meg róla, hogy a videó és a szöveg felett van */
}

.main-video-mute-button svg {
    color: #b68c5a;
}
.main-testimonials{
    background-color: #011c1a;
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.main-testimonials-item{
    padding-left: 35px;
    padding-right: 35px;
    height: 350px;
}
.main-testimonials-control-prev,
.main-testimonials-control-next {
    width: 30px;
    height: 30px;
    font-size: 16pt;
    color: rgba(182,140,90,0.6);
    transition: opacity 0.3s ease;
    border: 0;
    background: transparent;
}

.main-testimonials-control-prev:hover,
.main-testimonials-control-next:hover {
    color: rgba(182,140,90,1);
}
.main-testimonials-indicators button {
    width: 8px; /* A pöttyök szélessége */
    height: 8px; /* A pöttyök magassága */
    background-color: #000; /* Fekete háttér */
    border: 1px solid #000; /* Fekete keret */
    border-radius: 50%; /* Kerek forma */
    margin: 0 4px;
    opacity: 0.5; /* Halvány alapállapot */
    transition: opacity 0.3s ease;
}

.testimonials-head{
    border-bottom: 1px solid rgba(182,140,90,0.6);
}
.testimonials-head img{
    opacity: 0.8;
}
.testimonials-content{
    padding: 25px;
}
.main-testimonials-control-next,
.main-testimonials-control-prev{
    top: calc(50% - 20px);
}
.main-testimonials-customer{
    font-size: 1.2rem;
    padding-top: 20px;
    padding-bottom: 20px;
}
.main-testimonials-customer-name{
    font-size: 1.2rem;
    color: rgba(182,140,90,1);
    padding-top: 20px;
    padding-bottom: 20px;
}
.main-testimonials-title h3{
    font-size: 2.5rem;
}
.main-testimonials-title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.main-articles-offer-header h2{
    font-size: 2.5rem;
}
.main-articles-offer-header h3{
    color: #fff;
    font-size: 2rem;
}
.main-articles-offer-header{
    padding-top: 35px;
    padding-bottom: 35px;
    display: flex;
    min-height: 150px;
}
.col-v-m{
    align-content: center;
}

.main-contact{
    background-color: #011c1a;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
}
.main-contact h2{
    font-size: 1.5rem;
}
.main-contact p{
    font-weight: bold;
    font-size: 1rem;
}
.main-contact-col img{
    margin-left: 20px;
    margin-right: 20px;
}
.main-contact-col{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100px;
}
.main-contact-col div{
    text-align: left;

}
.main-contact-col:first-child:after{
    display: none !important;
}
.main-contact-col:after{
    content: "";
    height: 50px;
    width: 1px;
    border-right: 1px solid #b68c5a;
    display: block;
    position: absolute;
    left: 0px;
    bottom: 30px;
}
footer{
    background-color: #242c2e;
    padding-top: 25px;
}
footer ul{
    padding-left: 0;
}
footer li{
    list-style-type: none;
}
.footer-bottom{
    border-top: 1px solid #011c1a;
    padding: 25px;
}
.article-card{
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #272c30;
}
.article-image{
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 25px;
}
.article-title h2 a{
    color: #b68c5a;
    font-size: 1.2rem;
}
.article-more a{
    color: #b68c5a;
    font-size: 0.9rem;
}
.article-info,
.article-content{
    padding-top: 10px;
    padding-bottom: 10px;
}
.article-content{
    font-size: 0.9rem;
}
.article-info .btn{
    font-weight: normal;
    font-size: 0.7rem;
    background-color: #242c2e !important;
    border: 1px solid #242c2e !important;
    border-radius: 5px !important;
}
.article-info-separator{
    display: inline-block;
    height: 1px;
    border: 0;
    border-top: 2px solid #b68c5a;
    width: 60px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 25px;
    margin-right: 25px;
}
.article-info-separator-small{
    display: inline-block;
    height: 1px;
    border: 0;
    border-top: 2px solid #b68c5a;
    width: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 25px;
    margin-right: 25px;
}
.pagination{
    margin-top: 15px;
    margin-bottom: 15px;
}
.head-spacer{
    margin-top: 25px;
}
ul.no-list-style li{
    list-style-type: none;
}
.gold-color{
    color: #b68c5a !important;
}
.bank-content h3{
    font-size: 1rem;
}
.bank-content h4{
    font-size: 1rem;
    font-weight: normal;
}
.bank-content-first{
    border-right: 1px solid #b68c5a;
}
.contact-form{
    max-width: 600px;
    margin: 25px auto;

}

@media (max-width: 1400px) {
    .navbar-help-question{
        font-size: 8pt;
    }
    .navbar-help-phone{
        font-size: 10pt;
    }
}
@media (min-width: 1201px) {
    .no-desktop{
        display: none !important;
    }
}
@media (max-width: 1200px) {
    .bank-content:first-child{
        border: 0;
    }
    .no-tablet{
        display: none !important;
    }
    .no-mobile{
        display: none !important;
    }
    .main-video-overlay-text h2{
        font-size: 0.9rem;
    }
    .main-video-overlay-text p{
        font-size: 0.7rem;
    }
    .main-video-overlay-text{
        top: 85% !important;
    }
    .main-video-button{
        top: 35% !important;
    }
}
@media (max-width: 1000px) {
    .no-mobile{
        display: none !important;
    }
    .main-navbar-nav.navbar-nav .nav-item{
        border: 0 !important;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 1rem;
        text-align: center;
    }
    .main-navbar-nav{
        align-items: center;
    }
    .main-articles-offer-header h2{
        font-size: 1.5rem;
    }
    .main-articles-offer-header h3{
        font-size: 0.9rem;
    }
    .main-articles-offer-header .btn-lg{
        font-size: 0.9rem;
    }
    .main-contact h2{
        font-size: 1.5rem;
    }
    .main-contact p{
        font-size: 0.9rem;
    }
    .main-skills-col::after{
        display: none;
    }
    .main-testimonials-title h3{
        font-size: 1.5rem;
    }
    .main-testimonials-title{
        align-items: center;
    }
    .testimonials-head{
        display: none;
    }
    .main-testimonials-item{
        font-size: 1rem;
    }
}
.service-flip-flip {
    /*-webkit-perspective: 800;
    perspective: 800;
    position: relative;
    text-align: center;*/
}
.service-flip-flip .service-flip-card.service-flip-flipped {
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
}
.service-flip-flip .service-flip-card {
    /*width: 270px;
    height: 178px;*/
    -webkit-transform-style: preserve-3d;
    -webkit-transition: 0.5s;
    transform-style: preserve-3d;
    transition: 0.5s;
    /*background-color: #fff;*/

}
.service-flip-card{
    width: 100%;
    height: inherit;
}
.service-flip-flip .service-flip-card .service-flip-face {
    -webkit-backface-visibility: hidden ;
    backface-visibility: hidden ;
    z-index: 2;
}
.service-flip-flip .service-flip-card .service-flip-front {
    /*position: absolute;*/
    width: 100% !important;
    z-index: 1;
}
/*
.flip .card .front img{
    width: 270px;
    height: 100%;
}*/
/*.flip .card .img {
    position: relative;
    width: 270px;
    height: 178px;
    z-index: 1;
    border: 2px solid #000;
}*/
.service-flip-flip .service-flip-card .service-flip-back {
    top: 0px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 25px;
    -webkit-transform: rotatey(-180deg);
    transform: rotatey(-180deg);
    position: absolute;
    background-color: #242c2e;
    width: 100%;
    height: 100%;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.service-flip-inner{
    margin:0px !important;
    /*width: 270px;*/
}
.main-service-content ul{
    padding: 0;
    margin: 0;
}
.service-flip-flipped .service-flip-front .main-service-image,
.service-flip-flipped .service-flip-front .main-service-content{
    visibility: hidden;
}
.cke_editable .service-flip-flip .service-flip-card .service-flip-back{
    position: relative !important;
    border: 2px solid red;
    transform: rotatey(0deg) !important;
}
.cke_editable .service-flip-flip .service-flip-card .service-flip-face {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}