@import url('header.css');
@import url('footer.css');
@import url('form.css');
@import url('reset.css');
@import url('legal.css');
/* @import url('gallery.css'); */
@import url('description.css');
@import url('grid-gallery.css');
@import url('grid-gallery.min.css');


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #333;
}

/* .container {
    width: 1420px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
} */

html {
    scroll-behavior: smooth;
  }

.nav {
    display: flex;
    justify-content: space-around;
    background: #e8491d;
    padding: 10px 0;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
}

.nav a:hover {
    background: #333;
}

.footer {
    /* background: #35424a; */
    color: black;
    text-align: center;
    /* padding: 10px 0; */
    position: relative;
    bottom: 0;
    width: 100%;
}

body #app .custom-calendar.search-container[data-v-2baa32dd], body #hr-widget .custom-calendar.search-container[data-v-2baa32dd], body #hr-modal .custom-calendar.search-container[data-v-2baa32dd] {
    z-index: 1 !important;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .gallery-arrow--prev {
    left: 10px;
  }
  .gallery-arrow--next {
    right: 10px;
  }
  .gg-box {
    position: relative; /* обязательно для абсолютного позиционирования стрелок */
  }