/**
* Template Name: Ninestars
* Updated: Jan 29 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/ninestars-free-bootstrap-3-theme-for-creative/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


:root {
  --szin-1:#000000;/*Alapértelmezett Betűszín Felkete*/
  --szin-2:#ffffff;/*Alapértelmezett Betűszín Fehér*/
  --szin-3:#b0b0b0;/*Másodlagos Betűszín*/
  --szin-4:#ed8957;/*Kiemelt Szin*/
  --szin-5:#f57d45;/*Kiemelt Szín Hover*/
  --szin-6:#363636;/*Árnyék*/
}

.modal-dialog {
  max-width: 50% !important;
  z-index: 1234 !important;
}
@media screen and (max-width: 768px) {
  .modal-dialog {
    max-width: 100% !important;
    z-index: 1234 !important;
  }
}

body {
  font-family: "Raleway", sans-serif;
  color: #040404;
  background-color: #000;
}

.btn-default{
background-color: var(--szin-4);
color: var(--szin-2);
font-weight: 900;
padding: 10px;
}
.btn-default:hover{
  background-color: var(--szin-5);
  color: var(--szin-2);
  font-size: 110%;
  box-shadow: 5px 10px 15px var(--szin-6);
  transition: all 0.3s ease-in-out!important;
  }

a {
  color: var(--szin-4);
  text-decoration: none;
}

a:hover {
  color: var(--szin-5);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-hero {
  position: absolute;
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
}

.header-top {
  position: fixed;
  height: 75px;
  transition: all 0.5s;
  z-index: 997;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/*MAIN*/
#main {
  margin-top: -25px;/*Felcsúszás*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
/*HEADER-HERO*/
/*NAV-LI*/
.header-hero .navbar .nav-li>a,
.header-hero .navbar .nav-li>a:focus {
  color: #ffffff;
}
/*NAV-LI hover*/
.header-hero .navbar .nav-li>a:hover{
  color: var(--szin-4);
  font-size: 110%;
  transition: 0.3s;
  text-shadow: 5px 5px 10px var(--szin-3);
}
/*ACTIVE*/
.header-hero .navbar .nav-li .active,
.header-hero .navbar .nav-li .active:focus{
  color: var(--szin-4);
  font-weight: 900;
  font-size: 110%;
  letter-spacing: 1px;
}
/*HEADER-TOP*/
/*NAV-LI*/
.header-top .navbar .nav-li>a,
.header-top .navbar .nav-li>a:focus {
  color: var(--szin-1);
}
/*NAV-LI hover*/
.header-top .navbar .nav-li>a:hover{
  color: var(--szin-4);
  font-size: 110%;
  transition: 0.3s;
  text-shadow: 5px 5px 10px var(--szin-3);
}
/*ACTIVE*/
.header-top .navbar .nav-li .active,
.header-top .navbar .nav-li .active:focus{
  color: var(--szin-4);
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: underline;
}

/*DROPDOWN*/
.navbar .dropdown ul a,
.navbar .dropdown ul li>a {
  color:#747373;
}
.navbar .dropdown ul .active{
  color: var(--szin-4);
}

/*DROPDOWN HOVER*/
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--szin-4);
  font-size: 110%;
  transition: 0.3s;
  text-shadow: 5px 5px 5px var(--szin-3);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 5px 5px 5px var(--szin-3);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}


.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--szin-4);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  text-shadow: 5px 10px 15px var(--szin-6);
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(56, 56, 56, 0.5);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  color: #000;
  overflow-y: auto;
  transition: 0.3s;
}
.header-hero .navbar-mobile .nav-li>a
{color: #000000;}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #eb5d1e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #050518;
  background-image: url('../img/hero/bg.webp');
  background-size: cover; 
  background-position: center; 
}

.video-container {
  position:absolute;
  width: 100%;
  height: 120%;
  top: 0;
  right: 0;
  background-color: rgb(0, 0, 0); 
}

.video-container video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text{
  color: #FFFFFF;
  font-size:2vw;
  text-shadow: 7px 6px 6px rgba(11, 11, 11, 1);
}

@media (max-width: 991px) {
  .hero-text {
    font-size: 1.5rem;
  }
  #hero .box>h1{
    font-size: 1rem;
  }

}

#hero .container-box {
  width: 100%;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}

#hero .box {
  width: 100%;
  height: auto;
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out; 
}
#hero .box>h1 {
  font-size: 5rem;
  color: var(--szin-4);
  padding: 2rem;
  text-shadow: 7px 6px 6px rgba(11, 11, 11, 1);
  text-transform: uppercase;
  animation: flicker 1.5s infinite alternate;  

}

@keyframes flicker {
    
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    
      text-shadow:
          -0.2rem -0.2rem 1rem #080808,
          0.2rem 0.2rem 1rem #0c0c0c,
          0 0 2rem var(--szin-1),
          0 0 4rem var(--szin-1),
          0 0 5rem var(--szin-1),
          0 0 0rem var(--szin-1),
          0 0 0rem var(--szin-1);      
  }
}

@media (max-width: 991px) {
  #hero .box>h1 {
    font-size: 7vw !important;
    }
}

#hero .box.active {
  display: block;
  opacity: 1;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 120vh;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
padding-top: 60px;
  overflow: hidden;
}

.section-bg {
  background-color: #fef8f5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  margin-top: 50px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 35px;
  color: #000000;
  text-shadow: 5px 10px 15px #ababab;
}

.section-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0;
  margin-top:-20px;
  margin-bottom: 20px;
  color:var(--szin-3);

}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 35px;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 2px;
  background: var(--szin-4);
  bottom: 0;
  left: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 20px 0;
  color: #212529;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #fef8f5;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #4e4039;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  background: #eb5d1e;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--szin-5)
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #5c5c5c;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f39e7a;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #eb5d1e;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #eb5d1e;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ef7f4d;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}

#footer .credits a {
  color: var(--szin-4);
}

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 45px;
  bottom: 45px;
  z-index: 1000;
  background: var(--szin-4);
  width: 40px;
  height: 40px;
  border-radius:5px;
  transition: all 0.4s;
  border: 1px solid var(--szin-3);
}
.back-to-top:hover {
  background: var(--szin-4);
  box-shadow: 2px 5px 10px var(--szin-6);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.back-to-top i {
  font-size: 24px;
  color: var(--szin-2);
  line-height: 0;
}


/*PARALLAX*/
.parallax-bg {
  background-image: url(../img/parallax/01.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .parallax-bg{
    max-height:fit-content;
  }
}


/*SHADOW*/
.shadow {
  box-shadow: 1px 5px 15px rgb(0 0 0 / 0.5) !important;
}
.shadow-top{
  box-shadow: inset 0px 10px 20px -10px rgba(0,0,0,0.74) !important;
}

.shadow-top-top{
  position: relative;
  box-shadow:0px -2px 15px 0px rgba(0,0,0,0.74)!important;
}
.shadow-bottom{
  box-shadow:0px 10px 15px 0px rgba(0,0,0,0.74)!important;
}

/*HÍREK*/
.hirek{
  margin-left: 1vw;
  margin-right: 1vw;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  padding-bottom: 60px;
  position: relative;
}

.hirek .hirek-box {
  padding: 0;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: var(--szin-2);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border-left: 2px solid var(--szin-3);
  border-top: 2px solid var(--szin-3);
  border-right: 2px solid var(--szin-3);
  border-bottom: 2px solid var(--szin-3);
}

.hirek .hirek-box:hover{
  box-shadow: 5px 10px 15px var(--szin-3) !important;
  border: 2px solid var(--szin-4);
  transition: all 0.3s ease-in-out !important;
}

.hirek .hirek-title {
  position: absolute;
  width: auto;
  background-color: white;
  top:-10px;
  left:-10px;
  font-size: 1.5rem;
  /*background-color: var(--szin-4);*/
  /*border: 2px solid var(--szin-4);*/
  color: var(--szin-4);
  font-weight: bolder;
  text-shadow: 5px 10px 15px var(--szin-1) !important;
}

.hirek .hirek-date {
  position: absolute;
  bottom:5px;
  background-color: var(--szin-4);
  color: var(--szin-2);

}
.hirek .hirek-box:hover .hirek-date{
  color: var(--szin-1);
  transition: all 0.3s ease-in-out !important;
}
.hirek-date-row{
  position:static;
  bottom: 0px !important;
}

.hirek-box:hover .icon i {
  color: var(--szin-4);
  text-shadow: 5px 10px 15px var(--szin-3)  !important;
  transition: all 0.3s ease-in-out!important;
}

.hirek-content i {
  font-size: 2rem !important;
  color: var(--szin-4) ;
}

.hirek .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.heading {
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.075ch;
  color: hsl(0 0% 90%);
  text-align: center;
  --light-pos-x: 1; /* left: -1, center: 0, right: 1 */
  --light-pos-y: -1; /* top: -1, center: 0, bottom: 1 */
  
  --rim-size: .02ch;
  --shadow-offset: .2ch;
  --shadow-blur: .1ch;
  text-shadow: 
    calc(max(var(--rim-size), 1px) * var(--light-pos-x)) calc(max(var(--rim-size), 1px) * var(--light-pos-y)) hsl(0, 0%, 100%),
    calc(max(var(--rim-size), 1px) * var(--light-pos-x) * -1) calc(max(var(--rim-size), 1px) * var(--light-pos-y) * -1) hsl(0, 1%, 30%),
    calc(var(--shadow-offset) * var(--light-pos-x) * -1) calc(var(--shadow-offset) * var(--light-pos-y) * -1) var(--shadow-blur) hsla(0, 1%, 31%, 0.75) 
}
.heading:hover {
  color: #000;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Magamról
--------------------------------------------------------------*/
.magamrol{
  padding-bottom: 60px;
}
.bg-magamrol{
  background-color: white;
}

.magamrol .magamrol-box {
  padding: 30px;
  overflow: hidden;
  margin: 0 0 40px 0;
  background-color: #fff;
  min-height: 250px;
  min-width: 250px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid var(--szin-2);
  border-top: 2px solid var(--szin-3);
  border-bottom: 2px solid var(--szin-3);
}
.magamrol .magamrol-box-eszkozok {
  padding-bottom: 75px !important;
}

.magamrol .magamrol-box:hover{
  box-shadow: 5px 10px 15px gray !important;
  transition: all 0.3s ease-in-out!important;
}

.magamrol-box:hover .icon i {
  color: #000;
  text-shadow: 5px 10px 15px gray !important;
  transition: all 0.3s ease-in-out!important;
}

.magamrol .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--szin-4) ;
}

.magamrol .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--szin-4);
}

.magamrol .description {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--szin-1);
  transition: font-size 1s ease-in-out; 
}
.magamrol .magamrol-box:hover .description{
  font-size: 15px;
}

.card {
  position: relative;
  perspective: 500px;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 1s;
  transform-style: preserve-3d;
}

.card:hover .content {
  transform: rotateY( 180deg ) ;
  transition: transform 0.5s;
}

.front,
.back {
  position:absolute;
  height: 100%;
  width: 100%;
  background: transparent;
  color: transparent;
  text-align: center;
  border-radius: 5px;
  backface-visibility: hidden;
}

.back {
  background: transparent;
  transform: rotateY( 180deg ); 
}


.back .description{
  color: var(--szin-1);
  padding: 25px;
  font-size: 1.5rem !important;
}

.front img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Szolgáltatások
--------------------------------------------------------------*/

.szolgaltatasok{
  margin-left: 1vw;
  margin-right: 1vw;
  padding-bottom: 60px;
}

.bg-szolgaltatasok{
  background-color: var(--szin-2);
}

.szolgaltatasok-box{
  background-color: var(--szin-2);
  border: 1px solid var(--szin-3);
}

.szolgaltatasok .szolgaltatasok-box:hover{
  box-shadow: 5px 10px 15px gray !important;
  transition: all 0.3s ease-in-out!important;
}

.szolgaltatasok-title{
  background-color: var(--szin-2);
  color: var(--szin-6);
  text-decoration: var(--szin-6) underline;
  font-weight: bolder;
  font-size: 2rem;
  margin-left: 3rem;
  margin-right: 3rem;
  box-shadow: 2px 5px 15px rgb(177, 177, 177) !important;
}
@media screen and (max-width: 768px) {
  .szolgaltatasok-title{
    font-size: 1.5rem;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }
}



.szolgaltatasok .szolgaltatasok-leiras h3{
  color: var(--szin-4);
  text-decoration: var(--szin-4) underline;
}
.szolgaltatasok .szolgaltatasok-leiras span{
font-weight: bold;
}

.szolgaltatasok .szolgaltatasok-item {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.szolgaltatasok #szolgaltatasok-flters {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.szolgaltatasok #szolgaltatasok-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.szolgaltatasok #szolgaltatasok-flters li:hover{
  color: var(--szin-4);
  transition: 0.3s;
  text-shadow: 5px 5px 10px var(--szin-3);
}

.szolgaltatasok #szolgaltatasok-flters li.filter-active {
  color: var(--szin-4);
  text-decoration: var(--szin-4) underline;
}

.szolgaltatasok #szolgaltatasok-flters li:last-child {
  margin-right: 0;
}


.szolgaltatasok ul{
  padding-left: 25px;
  padding-right: 25px;
}


/*--------------------------------------------------------------
# Hasznos
--------------------------------------------------------------*/
.hasznos{
  padding-bottom: 60px;
}

.bg-hasznos{
  background-color: #ffffff;
}


.nav-tabs {
	border: none;
}
.nav-tabs .nav-link{
	border: none;
	border-radius: 0;
	transition: color .2s ease-out;
  color: var(--szin-1);
}

.tabs-marker .nav-link {
	position: relative;
}
#myTab {
  display: flex;
  justify-content: space-between;
  padding: 0; 
}

.nav-tabs .nav-item {
  flex: 1;
}

@media (max-width: 767.98px) {
  .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs-marker .nav-link:hover{
  color: var(--szin-4) !important;
  text-shadow: 5px 10px 15px var(--szin-3) !important;
  transition: all 0.3s ease-in-out!important;
}
.tabs-marker .nav-link.active{
  background-color: var(--szin-4) !important;
  color: var(--szin-2) !important;
  box-shadow: 5px 10px 15px var(--szin-3) !important;
  transition: all 0.3s ease-in-out!important;
}

.tab-pane{
  border-top:2px solid var(--szin-4);
  border-bottom:1px solid var(--szin-3);
  border-left:1px solid var(--szin-3);
  border-right:1px solid var(--szin-3);
  padding: 1rem;
  background-image: url('../img/parallax/01.webp');
  background-size: cover; 
  background-position: center;
}

.tab-pane:hover{
  box-shadow: 5px 10px 15px var(--szin-3);
  transition: all 0.3s ease-in-out;
}

/*Desktopon*/
@media (min-width: 767.98px) {
  .tabs-marker .nav-link.active .marker {
    height: 30px;
    width: 30px;
    left: 50%;
    bottom: -30px;
    transform: translatex(-50%);
    position: absolute;
    overflow: hidden;

  }
  .tabs-marker .nav-link.active .marker:after {
    content: "";
    height: 15px;
    width: 15px;
    top: -8px;
    left: 50%;
    transform: rotate(45deg) translatex(-50%);
    transform-origin: left;
    background-color:var(--szin-4);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    position: absolute;
  }
    .tab-pane {
    background-size: 80% 80%; /* mobilon kisebb méret */
    background-position: center;
  }
}


/*--------------------------------------------------------------
# Kapcsolat
--------------------------------------------------------------*/
.kapcsolat{
  margin-left: 1vw;
  margin-right: 1vw;
  padding-bottom: 60px;
}

.bg-kapcsolat{
  background-color: #ffffff;
}

.kapcsolat .info {
  border-top: 2px solid var(--szin-4);
  border-bottom: 2px solid var(--szin-4);
  padding: 30px;
  background: #fff;
  width: 100%;
}

.kapcsolat .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: var(--szin-4);
  color: var(--szin-2);
  transition: all 0.3s ease-in-out;
}

.kapcsolat .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7b7b7b;
}
.kapcsolat .info .kapcsolatfelvetel h4 {
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7b7b7b;
}

.kapcsolat .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  color: #000000;
  word-break: break-all;
  font-size: 0.75rem;
}

.kapcsolat .info .kapcsolatfelvetel .errors {
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  color: red;
}
.kapcsolat .info a {
  text-decoration: none;
  color: var(--szin-1);
  font-size: 1rem;
  font-weight: bold;
}



.kapcsolat .info .social-links {
  padding-left: 60px;
}

.kapcsolat .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.kapcsolat .info .social-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.kapcsolat .info .email:hover i,
.kapcsolat .info .address:hover i,
.kapcsolat .info .phone:hover i {
  background: #eb5d1e;
  color: #fff;
}

.kapcsolat .php-email-form {
  width: 100%;
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.kapcsolat .php-email-form .form-group {
  padding-bottom: 8px;
}



.kapcsolat .php-email-form input,
.kapcsolat .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.kapcsolat .php-email-form input {
  height: 44px;
}

.kapcsolat .php-email-form textarea {
  padding: 10px 12px;
}


.kapcsolat input:focus,
.kapcsolat textarea:focus,
.kapcsolat select:focus {
  outline: none; 
  border-color: var(--szin-4); 
}


/* Kijelölt elem */
.kapcsolat select option:checked {
  background-color: var(--szin-2);
  color:var(--szin-1) 
}

/*--------------------------------------------------------------
# Csúszka
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(119, 118, 118);
}
::-webkit-scrollbar-thumb {
  background:  #717171;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a6a6a6;
  border: 1px solid rgb(82, 81, 81);
}

.kapcsolatfelvetel_hiba {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff0019a8; /* Változtathatja az alert háttérszínét */
  color: white; /* Változtathatja a szövegszínét */
  padding: 10px 20px; /* Változtathatja a belső térközöket */
  border-radius: 5px; /* Változtathatja az alert sarkait */
  border: 2px solid red;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.811);
  z-index: 9999;
}
.kapcsolatfelvetel_rendben {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #19e892a8; /* Változtathatja az alert háttérszínét */
  color: white; /* Változtathatja a szövegszínét */
  padding: 10px 20px; /* Változtathatja a belső térközöket */
  border-radius: 5px; /* Változtathatja az alert sarkait */
  border: 2px solid green;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.811);
  z-index: 9999;
}

.image-container {
  width: 100%; /* Or set the desired width */
  height: auto; /* This will maintain the aspect ratio */
  overflow: hidden; /* Hide any content that overflows the container */
}

.image-container img {
  width: 100%; /* Make sure the image fills its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure there's no extra space beneath the image */
}