html {
  font-size: 62.5%;
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 55%;
  }
}
body {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  background-color: #57412c;
}

.big-text {
  font-size: 2.2rem;
  font-weight: 600 !important;
}

header {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.navbar {
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  padding: 0;
  background-color: transparent;
}

.header-menu {
  flex-basis: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  background-color: #8bc518;
  transition: all 0.45s ease;
  overflow: hidden;
  z-index: 4;
}
.header-menu.show {
  width: 25rem;
  height: 30rem;
}
.header-menu.show .navbar-nav .nav-link {
  opacity: 1;
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.9);
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  padding-top: 8.9rem;
  padding-bottom: 6.7rem;
  padding-left: 5rem;
  padding-right: 5rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-nav .nav-link {
  display: inline-block;
  transition: all 0.3s;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s;
}
.navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-nav .active > .nav-link {
  color: #fff;
}
.navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
  color: #fff;
  padding-left: 0.8rem;
}

.collapsing {
  width: 0;
  height: 0;
}

/* END Navbar */
/* Hamburger */
.hamburger-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hamburger {
  position: relative;
  color: #fff;
  padding: 3.15rem 2.85rem;
  width: 10rem;
  height: 10rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: #8bc518;
  border: 1px solid transparent;
  border-radius: 0;
  z-index: 10;
  border-radius: 50%;
}
.hamburger:not(.collapsed) {
  padding: 1.65rem 0.75rem;
}
.hamburger:not(.collapsed)::before {
  background-color: transparent;
}
.hamburger:focus, .hamburger:active {
  outline: 0;
}
.hamburger span {
  display: block;
  background-color: #ffffff;
  height: 5px;
  width: 40px;
  margin-top: 6px;
  margin-bottom: 6px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1;
  transition: background-color 0.3s;
}
.hamburger span:nth-child(1), .hamburger span:nth-child(3) {
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -o-transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
}
.hamburger:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 28px;
  top: 40px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hamburger:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.hamburger:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 28px;
  top: 40px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* END Hamburger */
header {
  background: url("../images/header.jpg") no-repeat top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 29.6rem;
}
header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  border-radius: 2rem;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  padding-top: 2.1rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
}
.logo img {
  position: relative;
}
.logo::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(5px);
}

.btn-arrow {
  display: block;
  width: 11rem;
  height: 11rem;
  margin-top: 7rem;
  background-image: linear-gradient(to top, #8bc518 0%, #598600 100%);
  border-radius: 99999rem;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
.btn-arrow img {
  -webkit-animation: arrAnim 1.3s infinite;
  animation: arrAnim 1.3s infinite;
}
.btn-arrow:hover, .btn-arrow:focus {
  padding-top: 1.2rem;
}
.btn-arrow:hover img, .btn-arrow:focus img {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}

@-webkit-keyframes arrAnim {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 1.5rem);
    opacity: 0;
  }
}
@keyframes arrAnim {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 1.5rem);
    opacity: 0;
  }
}
.main-text {
  text-align: center;
  margin: 0 auto;
  position: relative;
  margin-top: 18rem;
}
.main-text p {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.6;
}
.main-text p strong {
  font-weight: 800;
}
.main-text-content p {
  color: #ffffff;
  text-shadow: 1px 3px #57412c;
}

h2 {
  color: #fff;
  font-weight: 900;
  font-size: 5rem;
  position: relative;
}
h2:after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 0.5rem;
  background: #8bc518;
  width: 4rem;
  content: "";
  display: block;
  position: absolute;
}

.two-col ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: 5rem;
}
.two-col ul li {
  font-size: 2.4rem;
  color: #fff;
  position: relative;
  min-height: 2.4rem;
  padding-left: 3.6rem;
  margin: 1.5rem;
}
.two-col ul li:before {
  width: 3rem;
  height: 3rem;
  background: url("./../images/li.png") no-repeat center;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 0.3rem;
  content: "";
}

.sluzby {
  margin-top: 15rem;
}
.sluzby p {
  font-size: 2rem;
}

.gallery-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10rem;
  margin-bottom: 3rem;
}

.gallery-social {
  margin-bottom: 5rem;
}
.gallery-social .socials {
  margin-top: 2rem;
}

.gallery-item {
  margin: 1.2rem;
  width: calc(25% - 2.4rem);
  position: relative;
  padding-top: calc(25% - 2.4rem);
  overflow: hidden;
}
.gallery-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item-info {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  padding: 2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #fff;
  font-weight: 500;
  opacity: 0;
  height: 0;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
}
.gallery-item:hover .gallery-item-info {
  opacity: 1;
  height: 100%;
}

.dodavatele {
  margin-top: 10rem;
}

@media (max-width: 1399px) {
  header {
    padding-top: 20rem;
    background-position: top -8.5rem center;
    background-size: 1600px auto;
  }

  .logo {
    max-width: 100rem;
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .btn-arrow {
    width: 9.5rem;
    height: 9.5rem;
    margin-top: 6rem;
  }
  .btn-arrow img {
    max-width: 3.3rem;
  }

  .main-text {
    margin-top: 6rem;
  }
}
@media (max-width: 991px) {
  header {
    padding-top: 15rem;
    background-position: top -3rem center;
    background-size: 1250px auto;
  }

  .main-text p {
    font-size: 2.8rem;
  }
  .main-text p strong {
    font-size: 3.2rem;
  }

  .btn-arrow {
    width: 8rem;
    height: 8rem;
    margin-top: 4rem;
  }
  .btn-arrow img {
    max-width: 2.7rem;
  }
}
@media (max-width: 767px) {
  header {
    padding-top: 8rem;
    background-position: top -5rem center;
    background-size: 800px auto;
  }

  .logo {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .main-text-content {
    max-width: 50rem;
  }

  .main-text {
    margin-top: 4rem;
  }

  .main-text p {
    font-size: 2.2rem;
  }
  .main-text p strong {
    font-size: 2.4rem;
  }

  .btn-arrow {
    width: 6rem;
    height: 6rem;
    margin-top: 2rem;
  }
  .btn-arrow img {
    max-width: 2rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .sluzby {
    margin-top: 5rem;
  }

  .main-text p {
    font-size: 1.8rem;
  }

  .two-col ul {
    justify-content: flex-start;
    flex-direction: column;
  }
  .two-col ul li {
    font-size: 2rem;
    text-align: left;
  }

  .gallery-list {
    margin-top: 5rem;
  }

  .gallery-item {
    width: calc(50% - 1.2rem);
    position: relative;
    padding-top: calc(50% - 1.2rem);
    margin: 0.6rem;
  }

  .hamburger {
    width: 8rem;
    height: 8rem;
    padding: 2.4rem 1.8rem;
  }
  .hamburger span {
    height: 3px;
    width: 30px;
  }
  .hamburger:not(.collapsed) span:nth-child(1) {
    left: 15px;
    top: 30px;
  }
  .hamburger:not(.collapsed) span:nth-child(2) {
    height: 12px;
  }
  .hamburger:not(.collapsed) span:nth-child(3) {
    left: 15px;
    top: 30px;
  }

  .dodavatele {
    margin-top: 5rem;
  }
}
@media (max-width: 575px) {
  header {
    padding-top: 7rem;
    background-position: top -2rem center;
    background-size: 670px auto;
  }

  .logo {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .main-text p {
    font-size: 1.9rem;
  }
  .main-text p strong {
    font-size: 1.9rem;
  }
}
footer {
  background: url("../images/footer.jpg") no-repeat bottom center;
  margin-top: 2rem;
}

.contact-box {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 5rem;
}
.contact-box-map {
  overflow: hidden;
  height: 52rem;
  width: 100%;
  filter: grayscale(100%);
}
.contact-box-map iframe {
  width: 100%;
  height: 100%;
}
.contact-box-text {
  background-color: #2e2217;
  padding-top: 7.6rem;
  padding-bottom: 7.6rem;
}
.contact-box-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-box-text ul li {
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.contact-box-text ul li strong {
  font-size: 1.6rem;
  font-weight: 600;
}
.contact-box-text ul li a[href*="mailto:"] {
  position: relative;
}
.contact-box-text ul li a[href*="mailto:"]::before {
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  top: 100%;
  height: 1px;
  opacity: 0;
  transition: all 0.3s;
  background-color: #8bc518;
}
.contact-box-text ul li a[href*="mailto:"]:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-item-ico {
  margin-right: 3rem;
}

.socials {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}
.social-item {
  width: 8.3rem;
  height: 8.3rem;
  background-color: #2e2217;
  box-shadow: 0.4rem 0.5rem 1rem rgba(46, 34, 23, 0.27);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 7px;
  margin-right: 7px;
  transition: all 0.3s;
}
.social-item img {
  transition: transform 0.3s;
}
.social-item:hover {
  box-shadow: 0.4rem 0.5rem 1.5rem rgba(46, 34, 23, 0.5);
}
.social-item:hover img {
  transform: scale(1.068);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6.4rem;
  padding-bottom: 7.6rem;
}

@media (max-width: 1339px) {
  .contact-box-text {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .contact-item-ico {
    margin-right: 1.7rem;
  }

  .social-item {
    width: 7.5rem;
    height: 7.5rem;
  }
  .social-item.fb {
    padding: 1.7rem;
  }
  .social-item.insta {
    padding: 0.75rem;
  }

  .socials {
    margin-top: 6rem;
  }
}
@media (max-width: 991px) {
  .contact-box {
    margin-top: 3rem;
  }
  .contact-box-text .mail {
    margin-top: 3.5rem;
  }

  .contact-box-map {
    height: 40rem;
  }
}
@media (max-width: 767px) {
  .contact-box-text {
    padding: 4rem 3rem;
  }
  .contact-box-text [class*=col-]:last-of-type .contact-item {
    margin-bottom: 0;
  }

  .contact-item {
    margin-bottom: 2.5rem;
    justify-content: start;
  }

  .contact-item-ico {
    margin-right: 3rem;
    width: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .location .contact-item-ico img {
    max-width: 8rem;
  }

  .phone .contact-item-ico img {
    max-height: 5rem;
  }

  .mail .contact-item-ico img {
    max-height: 3.6rem;
  }

  .contact-box-text .mail {
    margin-top: 0;
  }

  .socials {
    margin-top: 5rem;
  }

  .footer-bottom {
    padding-top: 5rem;
  }
}
@media (max-width: 575px) {
  .contact-box-map {
    height: 25rem;
  }

  .footer-bottom {
    padding-bottom: 4.5rem;
  }

  .big-text {
    font-size: 1.9rem;
  }
}
@media (max-width: 399px) {
  .logo {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/*# sourceMappingURL=style.css.map */
