*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.2s linear;
}
.right-menu li
{
    display: inline-block;
    margin-top: 30px !important;
}
.right-menu li .fa
{
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}
.navbar-brand img
{
    width: 160px;
}
.navbar-brand
{
    left: 10%;
    top: 25px;
    transform: translateX(-50%);
    position: absolute;
}
.header
{
    background: #ffffff;
    box-shadow: -1px 8px 32px 0px rgba(0,0,0,0.08);
    margin-bottom: 80px;
}

.navbar
{
    padding: 0 300px !important;
}
.navbar-toggler
{
    border: none !important;
    background: transparent;
    outline: none !important;
    padding: 10px !important;
    margin-top: 30px;
    position: relative;
    z-index: 1001;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000000;
  transition: 0.4s;
  border-radius: 2px;
}

/* Aktív állapot - X-re változás */
.navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navbar styles for mobile */
@media (max-width: 768px) {
    .header {
        margin-bottom: 0%;
    }

    .navbar-brand
    {
        left: 75%;
        top: 25px;
        transform: translateX(-50%);
        position: absolute;
    }

    .navbar
    {
    padding: 0 40px !important;
    }

    .navbar-nav {
        text-align: left;
        margin-top: 10px;
    }

    .right-menu {
        text-align: left;
        margin-top: 15px;
    }

    .right-menu .input-group {
        justify-content: left;
    }
}

/*gallery style*/
.container{
    padding: 2rem 5%;
}
.image-container,
.image-container2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.image-container img,
.image-container2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}


/*----End credit----*/
.end.end {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    font-size: 14px;
    color: #555;
  }
  
  .end.end a {
    color: #ac7269;
    text-decoration: none;
    font-weight: bold;
  }
  
  .end.end a:hover {
    text-decoration: underline;
  }

/*-----footer------*/
.footer {
    background-color: #424E59;
    color: #fff;
    padding: 5px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 4px 5px 0 rgba(0,0,50,0.5) ;
  }
  
  .footer a {
    color: #fff;
    text-decoration: none;
  }
