/** VisariStudio adapted site styles. */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #d8d0c0;
}

a {
  text-decoration: none;
  color: #b08d57;
}

a:hover {
  color: #c9a75d;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b08d57;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c9a75d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0 4px 10px -3px rgba(191, 191, 191, 0.5);
}

#header .B414Bw4Mj8 h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .B414Bw4Mj8 h1 a, #header .B414Bw4Mj8 h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .B414Bw4Mj8 img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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;
  color: #f7f0df;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #b08d57;
}

.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: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

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

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

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

.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: #f7f0df;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.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(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #f7f0df;
}

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

.navbar-mobile .USeA3VRg6V {
  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: #b08d57;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../i54YI1v0M/rW7WVlR23.png");
  position: relative;
}

#hero .U4dmQ0Tk8 {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .igOZQNyi {
  margin-bottom: 30px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #aeaeae;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#hero .KGdeXY7oWC {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #fff;
  background: #b08d57;
}

#hero .KGdeXY7oWC:hover {
  transition: 0.5s;
  background: #fff;
  color: #b08d57;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

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

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

.P7QItSCFCTW {
  background-color: whitesmoke;
}

.grEyQOO {
  text-align: center;
  padding-bottom: 40px;
}

.grEyQOO h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #f7f0df;
}

.grEyQOO p {
  margin-bottom: 0;
  color: #aeaeae;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .image {
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #b08d57;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.sLL3vBEv .dU99gnarpKt h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.sLL3vBEv .dU99gnarpKt i {
  font-size: 48px;
  float: left;
  color: #b08d57;
}

.sLL3vBEv .dU99gnarpKt p {
  font-size: 15px;
  color: #959595;
  margin-left: 60px;
}

.sLL3vBEv .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.eNQDiBe {
  padding: 40px 0 0 0;
  background: white;
}

.eNQDiBe .O9dZWYG0iNc {
  border: 0;
}

.eNQDiBe .nav-link {
  border: 0;
  padding: 20px;
  color: #f7f0df;
  transition: 0.3s;
}

.eNQDiBe .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.eNQDiBe .nav-link:hover h4 {
  color: #b08d57;
}

.eNQDiBe .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.eNQDiBe .nav-link.active {
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
}

.eNQDiBe .nav-link.active h4 {
  color: #b08d57;
}

.eNQDiBe .CrgpW9G.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.nuftDWYnhRz {
  background: whitesmoke;
  padding: 0;
}

.nuftDWYnhRz .content {
  padding: 60px 100px 0 100px;
}

.nuftDWYnhRz .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.nuftDWYnhRz .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.nuftDWYnhRz .content p {
  font-size: 15px;
  color: #959595;
}

.nuftDWYnhRz .GLdRXp {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.nuftDWYnhRz .EWkzgaHVG {
  padding: 0 100px 60px 100px;
}

.nuftDWYnhRz .EWkzgaHVG ul {
  padding: 0;
  list-style: none;
}

.nuftDWYnhRz .EWkzgaHVG li + li {
  margin-top: 15px;
}

.nuftDWYnhRz .EWkzgaHVG li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.nuftDWYnhRz .EWkzgaHVG a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.nuftDWYnhRz .EWkzgaHVG span {
  color: #b08d57;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.nuftDWYnhRz .EWkzgaHVG i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.nuftDWYnhRz .EWkzgaHVG p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.nuftDWYnhRz .EWkzgaHVG .FHdzQI2x {
  display: none;
}

.nuftDWYnhRz .EWkzgaHVG a.collapsed {
  color: #343a40;
}

.nuftDWYnhRz .EWkzgaHVG a.collapsed:hover {
  color: #b08d57;
}

.nuftDWYnhRz .EWkzgaHVG a.collapsed .FHdzQI2x {
  display: inline-block;
}

.nuftDWYnhRz .EWkzgaHVG a.collapsed .s2MnDGift {
  display: none;
}

.nuftDWYnhRz .ehDw8DtOjr6 {
  width: 94px;
  height: 94px;
  background: radial-gradient(#b08d57 50%, rgba(124, 197, 118, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.nuftDWYnhRz .ehDw8DtOjr6::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nuftDWYnhRz .ehDw8DtOjr6::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(124, 197, 118, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.nuftDWYnhRz .ehDw8DtOjr6:hover::after {
  border-left: 15px solid #b08d57;
  transform: scale(20);
}

.nuftDWYnhRz .ehDw8DtOjr6:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .nuftDWYnhRz .content, .nuftDWYnhRz .EWkzgaHVG {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .nuftDWYnhRz .content {
    padding-top: 30px;
  }
  .nuftDWYnhRz .EWkzgaHVG {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Prostory
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #d8d0c0;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 10px 4px;
  background: whitesmoke;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #b08d57;
  color: #fff;
}

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

.portfolio .IUi3cElWIkp {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .IUi3cElWIkp::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .IUi3cElWIkp .QMgpR3 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .IUi3cElWIkp .QMgpR3::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .IUi3cElWIkp .QMgpR3::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .IUi3cElWIkp .QMgpR3 h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .IUi3cElWIkp .QMgpR3 p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .IUi3cElWIkp .aN8VnZ6eyZR {
  text-align: center;
  z-index: 4;
}

.portfolio .IUi3cElWIkp .aN8VnZ6eyZR a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .IUi3cElWIkp .aN8VnZ6eyZR a:hover {
  color: #b08d57;
}

.portfolio .IUi3cElWIkp:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .IUi3cElWIkp:hover .QMgpR3 {
  opacity: 1;
}

.portfolio .IUi3cElWIkp:hover .QMgpR3::before {
  top: 15px;
  left: 15px;
}

.portfolio .IUi3cElWIkp:hover .QMgpR3::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Detail prostoru
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b08d57;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b08d57;
}

.portfolio-details .QMgpR3 {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .QMgpR3 h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .QMgpR3 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .QMgpR3 ul li + li {
  margin-top: 10px;
}

.portfolio-details .A1StgkEmb0x {
  padding-top: 30px;
}

.portfolio-details .A1StgkEmb0x h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .A1StgkEmb0x p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background: url("../i54YI1v0M/jKVcnDF.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials .Us8qajQ {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials .Us8qajQ i {
  color: #b08d57;
  font-size: 24px;
  padding: 18px;
  border-radius: 50px;
  border: 2px solid #b08d57;
}

.testimonials .EcqgxSW {
  text-align: center;
  color: #fff;
}

.testimonials .EcqgxSW p {
  font-style: italic;
  margin: 0 auto 30px auto;
  font-size: 20px;
}

.testimonials .EcqgxSW .PWz80i {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .EcqgxSW h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .EcqgxSW h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b08d57;
}

@media (min-width: 992px) {
  .testimonials .EcqgxSW p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.NNtIwd {
  background: whitesmoke;
  padding: 15px 0;
  text-align: center;
}

.NNtIwd img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.NNtIwd img:hover {
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .NNtIwd img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .NNtIwd img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Tým
--------------------------------------------------------------*/
.szwpC4Tgz {
  background: #fff;
  padding: 60px 0;
}

.szwpC4Tgz .mhiVkA1 {
  margin-bottom: 20px;
  overflow: hidden;
}

.szwpC4Tgz .mhiVkA1 .dYqQy4M {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.szwpC4Tgz .mhiVkA1 .wE3tB4tn1 {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(124, 197, 118, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.szwpC4Tgz .mhiVkA1 .wE3tB4tn1 a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.szwpC4Tgz .mhiVkA1 .wE3tB4tn1 a i {
  line-height: 0;
}

.szwpC4Tgz .mhiVkA1 .wE3tB4tn1 a:hover {
  color: #fff;
}

.szwpC4Tgz .mhiVkA1 .wE3tB4tn1 i {
  font-size: 18px;
  margin: 0 2px;
}

.szwpC4Tgz .mhiVkA1 .Dgai99vdxo h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.szwpC4Tgz .mhiVkA1 .Dgai99vdxo span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #b08d57;
}

.szwpC4Tgz .mhiVkA1 .Dgai99vdxo p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #888888;
}

.szwpC4Tgz .mhiVkA1:hover .wE3tB4tn1 {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Nabídka
--------------------------------------------------------------*/
.YNFImzu1RC5 .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
}

.YNFImzu1RC5 .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #f7f0df;
}

.YNFImzu1RC5 .box h4 {
  font-size: 42px;
  color: #f7f0df;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.YNFImzu1RC5 .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.YNFImzu1RC5 .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.YNFImzu1RC5 .box ul {
  padding: 0;
  list-style: none;
  color: #f7f0df;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.YNFImzu1RC5 .box ul li {
  padding-bottom: 16px;
}

.YNFImzu1RC5 .box ul i {
  color: #b08d57;
  font-size: 18px;
  padding-right: 4px;
}

.YNFImzu1RC5 .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.YNFImzu1RC5 .box .mYOTd79BO {
  padding: 15px;
  text-align: center;
}

.YNFImzu1RC5 .box .y1IP4N4 {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 5px;
  border: 2px solid #b08d57;
  color: #b08d57;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.YNFImzu1RC5 .box .y1IP4N4:hover {
  background: #b08d57;
  color: #fff;
}

.YNFImzu1RC5 .ekoD7O0 {
  border-color: #b08d57;
}

.YNFImzu1RC5 .ekoD7O0 .y1IP4N4 {
  background: #b08d57;
  color: #fff;
}

.YNFImzu1RC5 .ekoD7O0 .y1IP4N4:hover {
  background: #61b959;
  border-color: #61b959;
}

.YNFImzu1RC5 .y9kZgbsiW4y {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 12px;
  padding: 4px 25px 6px 25px;
  background: #eaf6e9;
  color: #b08d57;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.tF00uF1rmh1 .eu0Tw8D {
  padding: 0;
  list-style: none;
}

.tF00uF1rmh1 .eu0Tw8D li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tF00uF1rmh1 .eu0Tw8D a {
  display: block;
  position: relative;
  font-family: #b08d57;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.tF00uF1rmh1 .eu0Tw8D i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.tF00uF1rmh1 .eu0Tw8D p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.tF00uF1rmh1 .eu0Tw8D .FHdzQI2x {
  display: none;
}

.tF00uF1rmh1 .eu0Tw8D a.collapsed {
  color: #343a40;
}

.tF00uF1rmh1 .eu0Tw8D a.collapsed:hover {
  color: #b08d57;
}

.tF00uF1rmh1 .eu0Tw8D a.collapsed .FHdzQI2x {
  display: inline-block;
}

.tF00uF1rmh1 .eu0Tw8D a.collapsed .s2MnDGift {
  display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.DQj9VutoM .info {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.DQj9VutoM .info i {
  font-size: 20px;
  color: #b08d57;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6e9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.DQj9VutoM .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #f7f0df;
}

.DQj9VutoM .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.DQj9VutoM .info .email, .DQj9VutoM .info .phone {
  margin-top: 40px;
}

.DQj9VutoM .info .email:hover i, .DQj9VutoM .info .ogzrsmdw:hover i, .DQj9VutoM .info .phone:hover i {
  background: #b08d57;
  color: #fff;
}

.DQj9VutoM .php-email-form {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.DQj9VutoM .php-email-form .O0UARuRzP {
  padding-bottom: 8px;
}

.DQj9VutoM .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.DQj9VutoM .php-email-form .error-message br + br {
  margin-top: 25px;
}

.DQj9VutoM .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.DQj9VutoM .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.DQj9VutoM .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

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

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

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

.DQj9VutoM .php-email-form button[type="submit"] {
  background: #b08d57;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.DQj9VutoM .php-email-form button[type="submit"]:hover {
  background: #61b959;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.w8hV74MHCs {
  padding: 40px 0;
}

.w8hV74MHCs h2 {
  font-size: 26px;
  font-weight: 300;
}

.w8hV74MHCs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.w8hV74MHCs ol li + li {
  padding-left: 10px;
}

.w8hV74MHCs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .w8hV74MHCs .TWozYC82 {
    display: block !important;
  }
  .w8hV74MHCs ol {
    display: block;
  }
  .w8hV74MHCs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../i54YI1v0M/gZ3tZW0hN.jpg") center center no-repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

#footer .DXelXxu30 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .DXelXxu30 .BZVhgQ img {
  height: 80px;
}

#footer .DXelXxu30 h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .DXelXxu30 p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .DXelXxu30 .boZV9KSZ {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

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

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

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

#footer .DXelXxu30 .boZV9KSZ form input[type="submit"]:hover {
  background: #5ab652;
}

#footer .DXelXxu30 .rjpf60N {
  margin-top: 30px;
}

#footer .DXelXxu30 .rjpf60N a {
  font-size: 18px;
  display: inline-block;
  background: #b08d57;
  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 .DXelXxu30 .rjpf60N a:hover {
  background: #5ab652;
  color: #fff;
  text-decoration: none;
}

#footer .glWXaF18bo {
  border-top: 1px solid #222222;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .JhumxUxp4 {
  text-align: center;
}

#footer .hyjzl7dxhA {
  text-align: center;
  font-size: 13px;
  padding-top: 5px;
}


/* VisariStudio brand adaptation */
:root{--vs-black:#070706;--vs-gold:#b08d57;--vs-emerald:#0f332b;--vs-burgundy:#4b111c;--vs-ivory:#f7f0df;--vs-bronze:#8c6239;}
body{background:var(--vs-black);color:#d8d0c0;}
#header{background:rgba(7,7,6,.96);box-shadow:0 4px 18px rgba(0,0,0,.55);}
#header .B414Bw4Mj8 h1 a,#header .B414Bw4Mj8 h1 a:hover{color:var(--vs-gold);font-weight:700;letter-spacing:2px;}
.navbar a,.navbar a:focus{color:var(--vs-ivory);}
.navbar a:hover,.navbar .active,.navbar .active:focus,.navbar li:hover>a{color:var(--vs-gold);}
.navbar-mobile{background:rgba(7,7,6,.98);}
.navbar-mobile ul,.navbar .dropdown ul{background:#11100e;}
#hero{background:linear-gradient(rgba(7,7,6,.68),rgba(7,7,6,.84)),url("../../i54YI1v0M/PSkV5HwHP.jpg") center center;background-size:cover;}
#hero h1{color:var(--vs-gold);}
#hero h2{color:var(--vs-ivory);}
#hero .KGdeXY7oWC,.php-email-form button[type=submit],.DQj9VutoM .php-email-form button[type=submit]{background:var(--vs-gold);border-color:var(--vs-gold);color:#080806;}
#hero .KGdeXY7oWC:hover,.php-email-form button[type=submit]:hover,.DQj9VutoM .php-email-form button[type=submit]:hover{background:var(--vs-bronze);border-color:var(--vs-bronze);color:#fff;}
section{background:#0b0b09;}
.grEyQOO h2,.content h2,.content h3{color:var(--vs-ivory);}
.grEyQOO h2::after{background:var(--vs-gold);}
.about .content ul i,.sLL3vBEv .dU99gnarpKt i,.DQj9VutoM .info i{color:var(--vs-gold);}
.sLL3vBEv .image{min-height:520px;background-size:cover;background-position:center;}
.eNQDiBe .nav-link.active,.YNFImzu1RC5 .ekoD7O0,.tF00uF1rmh1 .eu0Tw8D li,.DQj9VutoM .info{background:#12110f;border-color:rgba(176,141,87,.35);}
.portfolio .IUi3cElWIkp::before{background:rgba(15,51,43,.78);}
.testimonials{background:linear-gradient(rgba(7,7,6,.75),rgba(7,7,6,.75)),url("../i54YI1v0M/jKVcnDF.jpg") fixed center center;background-size:cover;}
.kTfZtx4fCpK{padding:120px 0 70px;background:linear-gradient(135deg,rgba(7,7,6,.92),rgba(15,51,43,.9)),url("../../i54YI1v0M/FhRBJLJY.jpg") center center;background-size:cover;text-align:center;}
.kTfZtx4fCpK h1{font-size:46px;font-weight:700;color:var(--vs-gold);text-transform:uppercase;}
.kTfZtx4fCpK p{color:var(--vs-ivory);font-size:20px;max-width:850px;margin:15px auto 0;}
.IjebgUGi{display:inline-block;border:1px solid var(--vs-gold);color:var(--vs-gold);padding:6px 14px;border-radius:30px;font-weight:700;margin-bottom:15px;}
.h4n7mjOVW0b{border:1px solid rgba(176,141,87,.45);padding:14px 18px;color:var(--vs-ivory);background:rgba(75,17,28,.45);}
.vWSCTr a{color:var(--vs-ivory);}
.vWSCTr a:hover{color:var(--vs-gold);}
#footer{background:#050504;color:var(--vs-ivory);}
#footer .DXelXxu30{background:linear-gradient(rgba(7,7,6,.92),rgba(7,7,6,.96)),url("../i54YI1v0M/gZ3tZW0hN.jpg") center center;background-size:cover;}
#footer h3{color:var(--vs-gold);}
.cookie-banner{position:fixed;left:20px;right:20px;bottom:20px;z-index:9999;display:none;align-items:center;gap:18px;justify-content:space-between;background:#11100e;border:1px solid rgba(176,141,87,.55);color:var(--vs-ivory);padding:16px 18px;box-shadow:0 10px 30px rgba(0,0,0,.45);}
.cookie-banner p{margin:0;font-size:14px;}
.cookie-banner button{background:var(--vs-gold);border:0;color:#080806;padding:9px 18px;font-weight:700;border-radius:3px;}
@media(max-width:768px){.cookie-banner{flex-direction:column;align-items:flex-start}.kTfZtx4fCpK h1{font-size:34px}}
