﻿/**
* Website: Zenovalink
* Static hospitality site adapted from the supplied Bootstrap template.
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Barevné proměnné Zenovalink
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #0d1110;
  --default-color: #eee2cf;
  --heading-color: #fff4dc;
  --accent-color: #c8a45d;
  --surface-color: #151c18;
  --contrast-color: #08110d;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #2b241b;
  --nav-hover-color: #8b1e34;
  --nav-mobile-background-color: #fbf5e8;
  --nav-dropdown-background-color: #fbf5e8;
  --nav-dropdown-color: #2b241b;
  --nav-dropdown-hover-color: #8b1e34;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.Pjpsc035 {
  --background-color: #f5efe3;
  --default-color: #382e25;
  --heading-color: #141812;
  --surface-color: #fffaf1;
  --contrast-color: #08110d;
}

.UXtkFkV9t {
  --background-color: #06100c;
  --default-color: #f4e8cf;
  --heading-color: #fff4dc;
  --surface-color: #111a15;
  --contrast-color: #08110d;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .p1L9uI0QT9 {
  line-height: 1;
}

.header .p1L9uI0QT9 img {
  max-height: 36px;
  margin-right: 8px;
}

.header .p1L9uI0QT9 h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .thvixA {
  padding-right: 15px;
}

.header .thvixA a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .thvixA a:hover {
  color: var(--accent-color);
}

.header .thvixA a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .p1L9uI0QT9 {
    order: 1;
  }

  .header .thvixA {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.n5bYTNmh1G {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.n5bYTNmh1G .nMfbaT1Ug p {
  margin-bottom: 0;
}

.n5bYTNmh1G .MQH29zs4v {
  margin-top: 20px;
}

.n5bYTNmh1G .MQH29zs4v a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.n5bYTNmh1G .MQH29zs4v a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.n5bYTNmh1G .I8pQeCmk {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.He7Ek5 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.He7Ek5 h1 {
  font-size: 24px;
  font-weight: 400;
}

.He7Ek5 .panm1fyA3l ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

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

.He7Ek5 .panm1fyA3l ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.NYkIx0 {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.NYkIx0 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.NYkIx0 h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.NYkIx0 p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.ndmeDQepI {
  width: 100%;
  min-height: calc(100vh - 82px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .ndmeDQepI {
    min-height: calc(100vh - 68px);
  }
}

.ndmeDQepI img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ndmeDQepI .container {
  position: relative;
  z-index: 3;
}

.ndmeDQepI h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.ndmeDQepI p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.ndmeDQepI .R3bJvGQ {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
}

.ndmeDQepI .R3bJvGQ:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 20%);
}

@media (max-width: 768px) {
  .ndmeDQepI h2 {
    font-size: 32px;
  }

  .ndmeDQepI p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

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

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .ujBHdcyxbT {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.VCtBB2xZAYP .z408LrsaDq7 {
  padding: 30px;
  width: 100%;
}

.VCtBB2xZAYP .z408LrsaDq7 span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.VCtBB2xZAYP .z408LrsaDq7 span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.VCtBB2xZAYP .z408LrsaDq7 p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.P78Xvc .IyBTtwohr5 {
  margin-bottom: 40px;
}

.P78Xvc .TAdgfqFj,
.P78Xvc .IbS4Eq {
  overflow: hidden;
}

.P78Xvc .HJD604tHv2Q {
  text-align: center;
}

.P78Xvc .HJD604tHv2Q .Uy2GKO1roB {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.P78Xvc .HJD604tHv2Q h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.P78Xvc .HJD604tHv2Q h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.P78Xvc .HJD604tHv2Q .kKXOpU5sdMH {
  margin-bottom: 15px;
}

.P78Xvc .HJD604tHv2Q .kKXOpU5sdMH i {
  color: #ffc107;
  margin: 0 1px;
}

.P78Xvc .HJD604tHv2Q .WZr53p,
.P78Xvc .HJD604tHv2Q .km62eQm0d7j {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.P78Xvc .HJD604tHv2Q .WZr53p {
  display: inline-block;
  left: -5px;
  position: relative;
}

.P78Xvc .HJD604tHv2Q .km62eQm0d7j {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.P78Xvc .HJD604tHv2Q p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.P78Xvc .swiper-wrapper {
  height: auto;
}

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

.P78Xvc .swiper-pagination .tVCHPo6 {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.P78Xvc .swiper-pagination .TgV3zraDO1s {
  background-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .cx5u57BtUb {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .CDlAPhQ1 {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .CDlAPhQ1 h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .CDlAPhQ1 h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .CDlAPhQ1 ul {
  padding-left: 20px;
}

.resume .CDlAPhQ1 ul li {
  padding-bottom: 10px;
}

.resume .CDlAPhQ1:last-child {
  padding-bottom: 0;
}

.resume .CDlAPhQ1::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.m3YrrnuuGIz .HKp4s7wvV4 {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.m3YrrnuuGIz .HKp4s7wvV4 .dQnUxi0 {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.m3YrrnuuGIz .HKp4s7wvV4 .dQnUxi0 i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.m3YrrnuuGIz .HKp4s7wvV4 .dQnUxi0 svg {
  position: absolute;
  top: 0;
  left: 0;
}

.m3YrrnuuGIz .HKp4s7wvV4 .dQnUxi0 svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.m3YrrnuuGIz .HKp4s7wvV4 h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.m3YrrnuuGIz .HKp4s7wvV4 p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.m3YrrnuuGIz .HKp4s7wvV4:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.m3YrrnuuGIz .HKp4s7wvV4.a4d1stg3 i {
  color: #0dcaf0;
}

.m3YrrnuuGIz .HKp4s7wvV4.a4d1stg3:hover .dQnUxi0 i {
  color: #fff;
}

.m3YrrnuuGIz .HKp4s7wvV4.a4d1stg3:hover .dQnUxi0 path {
  fill: #0dcaf0;
}

.m3YrrnuuGIz .HKp4s7wvV4.p0mJj4RgYW i {
  color: #fd7e14;
}

.m3YrrnuuGIz .HKp4s7wvV4.p0mJj4RgYW:hover .dQnUxi0 i {
  color: #fff;
}

.m3YrrnuuGIz .HKp4s7wvV4.p0mJj4RgYW:hover .dQnUxi0 path {
  fill: #fd7e14;
}

.m3YrrnuuGIz .HKp4s7wvV4.FPjuwOKP i {
  color: #20c997;
}

.m3YrrnuuGIz .HKp4s7wvV4.FPjuwOKP:hover .dQnUxi0 i {
  color: #fff;
}

.m3YrrnuuGIz .HKp4s7wvV4.FPjuwOKP:hover .dQnUxi0 path {
  fill: #20c997;
}

.m3YrrnuuGIz .HKp4s7wvV4.O6SEaIjf i {
  color: #df1529;
}

.m3YrrnuuGIz .HKp4s7wvV4.O6SEaIjf:hover .dQnUxi0 i {
  color: #fff;
}

.m3YrrnuuGIz .HKp4s7wvV4.O6SEaIjf:hover .dQnUxi0 path {
  fill: #df1529;
}

.m3YrrnuuGIz .HKp4s7wvV4.m4MxCEmuqz i {
  color: #6610f2;
}

.m3YrrnuuGIz .HKp4s7wvV4.m4MxCEmuqz:hover .dQnUxi0 i {
  color: #fff;
}

.m3YrrnuuGIz .HKp4s7wvV4.m4MxCEmuqz:hover .dQnUxi0 path {
  fill: #6610f2;
}

.m3YrrnuuGIz .HKp4s7wvV4.pB9PHd976m i {
  color: #f3268c;
}

.m3YrrnuuGIz .HKp4s7wvV4.pB9PHd976m:hover .dQnUxi0 i {
  color: #fff;
}

.m3YrrnuuGIz .HKp4s7wvV4.pB9PHd976m:hover .dQnUxi0 path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.c6Qe3Sjuhw5 .nRy5i3f {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.c6Qe3Sjuhw5 .nRy5i3f li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.c6Qe3Sjuhw5 .nRy5i3f li:hover,
.c6Qe3Sjuhw5 .nRy5i3f li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.c6Qe3Sjuhw5 .nRy5i3f li:first-child {
  margin-left: 0;
}

.c6Qe3Sjuhw5 .nRy5i3f li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .c6Qe3Sjuhw5 .nRy5i3f li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.c6Qe3Sjuhw5 .Te4cLz6n {
  position: relative;
  overflow: hidden;
}

.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy .mDZTdX,
.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy .nIdJP85Nuh {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy .mDZTdX:hover,
.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy .nIdJP85Nuh:hover {
  color: var(--accent-color);
}

.c6Qe3Sjuhw5 .Te4cLz6n .N7CZssf6zFy .nIdJP85Nuh {
  right: 14px;
  font-size: 28px;
}

.c6Qe3Sjuhw5 .Te4cLz6n:hover .N7CZssf6zFy {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.Uygzobrd .BuUm7auff img {
  width: 100%;
}

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

.Uygzobrd .BuUm7auff .swiper-pagination .tVCHPo6 {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.Uygzobrd .BuUm7auff .swiper-pagination .TgV3zraDO1s {
  background-color: var(--accent-color);
}

.Uygzobrd .N7CZssf6zFy {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.Uygzobrd .N7CZssf6zFy h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.Uygzobrd .N7CZssf6zFy ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.Uygzobrd .N7CZssf6zFy ul li+li {
  margin-top: 10px;
}

.Uygzobrd .KpaE7Oy0i {
  padding-top: 30px;
}

.Uygzobrd .KpaE7Oy0i h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.Uygzobrd .KpaE7Oy0i p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.gszi4q3m5 .pp4z5A0 {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .gszi4q3m5 .pp4z5A0 {
    padding: 20px;
  }
}

.gszi4q3m5 .e0G5VmV {
  margin-bottom: 40px;
}

.gszi4q3m5 .e0G5VmV i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.gszi4q3m5 .e0G5VmV h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.gszi4q3m5 .e0G5VmV p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.gszi4q3m5 .e0G5VmV:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.gszi4q3m5 .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .gszi4q3m5 .php-email-form {
    padding: 20px;
  }
}

.gszi4q3m5 .php-email-form input[type=text],
.gszi4q3m5 .php-email-form input[type=email],
.gszi4q3m5 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.gszi4q3m5 .php-email-form input[type=text]:focus,
.gszi4q3m5 .php-email-form input[type=email]:focus,
.gszi4q3m5 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.gszi4q3m5 .php-email-form input[type=text]::placeholder,
.gszi4q3m5 .php-email-form input[type=email]::placeholder,
.gszi4q3m5 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.gszi4q3m5 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.gszi4q3m5 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.zgWHjSD {
  /* Add your styles here */
}
/*--------------------------------------------------------------
# Zenovalink Adaptation
--------------------------------------------------------------*/
.header {
  border-bottom: 1px solid rgba(200, 164, 93, 0.22);
  box-shadow: 0 10px 28px rgba(6, 16, 12, 0.12);
}

.header .p1L9uI0QT9 h1 {
  color: #141812;
  font-weight: 600;
  text-transform: none;
}

@media (min-width: 1200px) {
  .navmenu>ul>li {
    padding: 15px 9px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 14px;
  }
}

.lOrWVovK {
  padding-right: 15px;
}

.lOrWVovK span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  border: 1px solid #c8a45d;
  border-radius: 50px;
  color: #8b1e34;
  font-weight: 700;
  background: #fffaf1;
}

.mgJ5DS0cZO {
  min-height: calc(100vh - 82px);
}

.wMDKUbm {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(6, 16, 12, 0.82), rgba(6, 16, 12, 0.48), rgba(6, 16, 12, 0.72));
}

.ndmeDQepI .IC1zL1qrg5M {
  color: #f3d99d;
  font-size: 14px;
  font-family: var(--nav-font);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ndmeDQepI h2 {
  color: #fff4dc;
  font-size: 58px;
  font-weight: 600;
}

.ndmeDQepI p {
  color: #f4e8cf;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.KGGmT4 {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ndmeDQepI .RPv8g1y {
  color: #fff4dc;
  border: 1px solid rgba(244, 232, 207, 0.72);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
}

.ndmeDQepI .RPv8g1y:hover {
  color: #08110d;
  border-color: #c8a45d;
  background: #c8a45d;
}

.ExkLDqYzJtd,
.c6Qe3Sjuhw5 .Te4cLz6n img {
  border-radius: 8px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  box-shadow: 0 18px 50px rgba(6, 16, 12, 0.22);
}

.c6Qe3Sjuhw5 .Te4cLz6n img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.m3YrrnuuGIz .HKp4s7wvV4,
.gszi4q3m5 .pp4z5A0,
.gszi4q3m5 .php-email-form,
.WnT3ss {
  border: 1px solid rgba(200, 164, 93, 0.18);
}

.m3YrrnuuGIz .HKp4s7wvV4 {
  box-shadow: 0 18px 45px rgba(6, 16, 12, 0.18);
}

.m3YrrnuuGIz .HKp4s7wvV4 .dQnUxi0 {
  border-radius: 50%;
  background: rgba(200, 164, 93, 0.12);
}

.m3YrrnuuGIz .HKp4s7wvV4 .dQnUxi0 i,
.m3YrrnuuGIz .HKp4s7wvV4.a4d1stg3 i,
.m3YrrnuuGIz .HKp4s7wvV4.p0mJj4RgYW i,
.m3YrrnuuGIz .HKp4s7wvV4.FPjuwOKP i,
.m3YrrnuuGIz .HKp4s7wvV4.O6SEaIjf i,
.m3YrrnuuGIz .HKp4s7wvV4.m4MxCEmuqz i,
.m3YrrnuuGIz .HKp4s7wvV4.pB9PHd976m i {
  color: #c8a45d;
}

.m3YrrnuuGIz .HKp4s7wvV4:hover .dQnUxi0 {
  background: #0f3b2e;
}

.m3YrrnuuGIz .HKp4s7wvV4:hover .dQnUxi0 i {
  color: #fff4dc;
}

.P78Xvc .oEw8qzd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f3b2e;
  color: #f3d99d;
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
}

.D9qyvZf4bFJ {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border: 1px solid rgba(200, 164, 93, 0.2);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--heading-color);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--heading-font);
  font-weight: 700;
}

.faq-question:after {
  content: "+";
  color: var(--accent-color);
  font-size: 24px;
  line-height: 1;
}

.faq-item.active .faq-question:after {
  content: "-";
}

.jfnrPqr7 {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.active .jfnrPqr7 {
  display: block;
}

.jfnrPqr7 p {
  margin: 0;
}

.elvpnhiLduC h2 {
  margin-bottom: 15px;
}

.hYf4X45 {
  background: rgba(200, 164, 93, 0.12);
  border: 1px solid rgba(200, 164, 93, 0.45);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hYf4X45 strong {
  color: #f3d99d;
  font-size: 44px;
  line-height: 1;
}

.hYf4X45 span {
  color: #f4e8cf;
}

.n5bYTNmh1G {
  border-top: 1px solid rgba(200, 164, 93, 0.24);
}

.n5bYTNmh1G h3,
.n5bYTNmh1G h4 {
  color: var(--heading-color);
}

.MZkAfX4 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.MZkAfX4 li+li {
  margin-top: 8px;
}

.F6edC8 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  background: #fffaf1;
  color: #2b241b;
  border: 1px solid rgba(200, 164, 93, 0.45);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(6, 16, 12, 0.28);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 14px;
}

.cookie-banner button {
  border: 0;
  background: #0f3b2e;
  color: #fff4dc;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
}

.cookie-banner.is-hidden {
  display: none;
}

.S19qhK {
  width: 100%;
  min-height: 270px;
  border-radius: 8px;
  border: 1px solid rgba(200, 164, 93, 0.36);
  background: linear-gradient(135deg, rgba(15, 59, 46, 0.92), rgba(123, 37, 54, 0.78)), url("../cnQPKuase/XsSl4qA7Nv.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff4dc;
  font-family: var(--heading-font);
  font-size: 22px;
  text-align: center;
  padding: 20px;
}

.gszi4q3m5 .php-email-form input[type=tel] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.gszi4q3m5 .php-email-form input[type=tel]:focus {
  border-color: var(--accent-color);
}

.xaekhmJW {
  max-width: 1080px;
}

.WnT3ss {
  height: 100%;
  padding: 28px;
  border-radius: 8px;
  background: var(--surface-color);
  box-shadow: 0 14px 34px rgba(6, 16, 12, 0.14);
}

.WnT3ss h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.WnT3ss p {
  margin: 0;
}

@media (max-width: 768px) {
  .ndmeDQepI h2 {
    font-size: 40px;
  }

  .KGGmT4 {
    display: block;
  }

  .ndmeDQepI .R3bJvGQ,
  .ndmeDQepI .RPv8g1y {
    width: 100%;
    max-width: 280px;
    margin-top: 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block;
  }

  .cookie-banner button {
    width: 100%;
    margin-top: 12px;
  }
}


