/* =========================================
DERATIZACE TRÁVNÍČEK – NOVÝ WEB
========================================= */

* {
  box-sizing: border-box;
}

.dt-web {
  --blue: #0b4fa2;
  --blue-light: #2485e6;
  --red: #e31316;
  --dark: #171a1f;
  --text: #252a30;
  --border: #e2e5e9;

  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 295px minmax(0, 1fr);
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.dt-web a {
  text-decoration: none;
}

/* LEVÝ PANEL
========================================= */

.dt-sidebar {
  background: #fff;
  padding: 32px 28px;
  border-right: 1px solid #e7e7e7;
  box-shadow: 5px 0 18px rgba(0,0,0,.05);
  position: relative;
  z-index: 5;
}

.dt-side-section {
  padding: 0 0 25px;
  margin: 0 0 24px;
  border-bottom: 1px solid #e2e2e2;
}

.dt-side-section:last-child {
  border-bottom: 0;
}

.dt-side-section h3 {
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 18px;
}

.dt-side-section h3::before {
  content: "◉";
  display: inline-block;
  margin-right: 10px;
  color: var(--blue);
}

.dt-side-section > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  color: #293039;
  font-weight: 700;
  font-size: 15px;
}

.dt-side-section > a span {
  color: #7d8792;
  font-size: 24px;
  line-height: 14px;
}

.dt-side-section p {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

.dt-side-section strong {
  font-weight: 800;
}

.dt-contact a {
  display: inline;
  border: 0;
  padding: 0;
  font-weight: inherit;
}

.dt-contact a strong,
.dt-side-section a[href^="tel"],
.dt-side-section a[href^="mailto"] {
  color: var(--red);
}


/* HLAVNÍ ČÁST
========================================= */

.dt-main {
  min-width: 0;
  background: #f6f7f8;
}


/* HERO
========================================= */

.dt-hero {
  height: 555px;
  position: relative;
  overflow: hidden;
  background: #151515;
}

.dt-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
}

.dt-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8,8,8,.88) 0%,
      rgba(8,8,8,.74) 27%,
      rgba(8,8,8,.37) 48%,
      rgba(8,8,8,.04) 75%
    );
}

.dt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 63px 40px 35px 50px;
  color: #fff;
}

.dt-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: 43px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.5px;
}

.dt-hero-content h1 span {
  color: #2586e8;
}

.dt-hero-content h2 {
  margin: 15px 0 25px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.dt-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.dt-checks li {
  position: relative;
  padding: 7px 0 7px 45px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.dt-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #3495ed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.dt-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.dt-btn {
  min-height: 52px;
  padding: 0 27px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.dt-btn-phone {
  background: var(--red);
  color: #fff !important;
  box-shadow: 0 7px 18px rgba(227,19,22,.2);
}

.dt-btn-contact {
  background: rgba(15,18,23,.87);
  border: 2px solid #2586e8;
  color: #fff !important;
}


/* KARTY SLUŽEB
========================================= */

.dt-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 30px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}

.dt-card {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
  min-height: 245px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 19px rgba(0,0,0,.12);
}

.dt-card-image {
  min-width: 0;
  overflow: hidden;
}

.dt-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dt-card-content {
  padding: 24px 16px 14px 18px !important;
}

.dt-service-icon {
  position: absolute;
  left: 22px;
  top: 15px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0755ae;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.12);
  font-size: 25px;
}

.dt-card-content h2 {
  color: #101010;
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 900;
}

.dt-card-content p {
  margin: 0 0 18px;
  color: #30343a;
  font-size: 14px;
}

.dt-card-content a {
  color: #0755ae;
  font-size: 14px;
  font-weight: 800;
}


/* VÝHODY
========================================= */

.dt-benefits {
  margin: 28px 30px 0;
  background: #fff;
  border: 1px solid #e3e5e8;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
  overflow: hidden;
}

.dt-benefit {
  display: flex;
  gap: 14px;
  padding: 27px 18px;
  align-items: flex-start;
}

.dt-benefit + .dt-benefit {
  border-left: 1px solid #eceef0;
}

.dt-benefit-icon {
  flex: 0 0 42px;
  font-size: 39px;
  line-height: 1;
  color: #0755ae;
  text-align: center;
}

.dt-benefit strong {
  display: block;
  color: #151515;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.dt-benefit p {
  margin: 0;
  color: #34383d;
  font-size: 12px;
  line-height: 1.4;
}


/* HOLUBI
========================================= */

.dt-pigeons {
  margin: 28px 30px 40px;
  padding: 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
}

.dt-pigeons h2 {
  color: #0755ae;
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 900;
}

.dt-pigeons p {
  margin: 0;
}


/* OMEZENÍ VLIVU ŠABLONY AURORA
========================================= */

.dt-web h1,
.dt-web h2,
.dt-web h3,
.dt-web p,
.dt-web ul,
.dt-web li {
  font-family: Arial, Helvetica, sans-serif;
}


/* TABLET
========================================= */

@media (max-width: 1100px) {

  .dt-web {
    grid-template-columns: 245px minmax(0, 1fr);
  }

  .dt-sidebar {
    padding: 26px 20px;
  }

  .dt-hero {
    height: 520px;
  }

  .dt-hero-content {
    padding-left: 35px;
  }

  .dt-hero-content h1 {
    font-size: 36px;
  }

  .dt-hero-content h2 {
    font-size: 24px;
  }

  .dt-services {
    grid-template-columns: 1fr;
  }

  .dt-card {
    min-height: 220px;
  }

  .dt-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .dt-benefit:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #eceef0;
  }

  .dt-benefit:nth-child(4) {
    border-top: 1px solid #eceef0;
  }
}


/* MOBIL
========================================= */

@media (max-width: 760px) {

  .dt-web {
    display: block;
  }

  .dt-sidebar {
    display: none;
  }

  .dt-hero {
    height: auto;
    min-height: 650px;
  }

  .dt-hero-image {
    object-position: 64% center;
  }

  .dt-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.77) 48%,
        rgba(0,0,0,.93) 100%
      );
  }

  .dt-hero-content {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px 22px;
  }

  .dt-hero-content h1 {
    font-size: 32px;
  }

  .dt-hero-content h2 {
    font-size: 22px;
  }

  .dt-checks li {
    font-size: 15px;
  }

  .dt-buttons {
    display: grid;
  }

  .dt-btn {
    width: 100%;
  }

  .dt-services {
    padding: 20px 15px 0;
    margin: 0;
  }

  .dt-card {
    grid-template-columns: 42% 58%;
  }

  .dt-benefits {
    grid-template-columns: 1fr;
    margin: 20px 15px 0;
  }

  .dt-benefit + .dt-benefit {
    border-left: 0;
    border-top: 1px solid #eceef0;
  }

  .dt-pigeons {
    margin: 20px 15px 30px;
  }
}


/* MALÉ MOBILY
========================================= */

@media (max-width: 480px) {

  .dt-hero-content h1 {
    font-size: 27px;
  }

  .dt-hero-content h2 {
    font-size: 19px;
  }

  .dt-card {
    display: block;
  }

  .dt-card-image {
    height: 180px;
  }

  .dt-card-content {
    padding-top: 70px;
  }
}
/* Skrytí původního motivu šablony Aurora */
#motive {
  display: none !important;
}
/* NOVÉ LOGO – větší zobrazení */
#logo {
  width: 360px !important;
  max-width: 360px !important;
}

#logo img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
}
/* ZVĚTŠENÍ LOGA V AURORA */
header img,
#header img,
.logo img,
.logo a img,
#head img {
  width: 360px !important;
  max-width: 360px !important;
  height: auto !important;
  max-height: none !important;
}
/* KOMPAKTNĚJŠÍ HLAVIČKA */
header,
#header,
.header,
#head {
  min-height: 100px !important;
  height: auto !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

header img,
#header img,
.logo img,
.logo a img,
#head img {
  width: 360px !important;
  max-width: 360px !important;
  height: auto !important;
  max-height: 80px !important;
  object-fit: contain !important;
}
/* ZMENŠENÍ HORNÍ HLAVIČKY */
#header {
  min-height: 90px !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* KOMPAKTNĚJŠÍ LOGO A MENU */
#navbar {
  min-height: 70px !important;
  height: 70px !important;
}

.navbar__brand {
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
}

.navbar__brand img {
  max-height: 60px !important;
  width: auto !important;
}
/* FINÁLNÍ KOMPAKTNÍ HLAVIČKA */

/* horní řádek telefon + e-mail */
.contactus-wrap {
  height: 30px !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 0 40px !important;
}

#contactus {
  height: 30px !important;
  min-height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* řádek logo + menu */
#navbar {
  height: 75px !important;
  min-height: 75px !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
}

/* samotná hlavička */
#header {
  min-height: 105px !important;
  height: 105px !important;
  padding: 0 !important;
}

/* logo */
.navbar__brand {
  height: 75px !important;
  display: flex !important;
  align-items: center !important;
}

.navbar__brand img {
  width: 320px !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: 68px !important;
  object-fit: contain !important;
}
/* ===== FINÁLNÍ ROZLOŽENÍ HLAVIČKY ===== */

#header {
  position: relative !important;
  height: 105px !important;
  min-height: 105px !important;
  padding: 0 !important;
  background: #fff !important;
}

/* telefon + email vpravo nahoře */
.contactus-wrap {
  position: absolute !important;
  top: 10px !important;
  right: 35px !important;
  left: auto !important;
  width: auto !important;
  height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 20 !important;
}

#contactus {
  width: auto !important;
  height: 28px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

/* hlavní řádek logo + menu */
#navbar {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 105px !important;
  min-height: 105px !important;
  padding: 0 35px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* logo */
.navbar__brand {
  height: 105px !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.navbar__brand img {
  width: 300px !important;
  max-width: 300px !important;
  height: auto !important;
  max-height: 72px !important;
}

/* menu vpravo a trochu níž pod kontakty */
#nav-menu {
  margin-left: auto !important;
  margin-top: 27px !important;
}
#header {
  height: 80px !important;
  min-height: 80px !important;
}

#navbar {
  height: 80px !important;
  min-height: 80px !important;
}

.navbar__brand {
  height: 80px !important;
}

.navbar__brand img {
  max-height: 60px !important;
}

.contactus-wrap {
  top: 4px !important;
}

#nav-menu {
  margin-top: 22px !important;
}
/* ODSTRANĚNÍ BÍLÉ MEZERY NAD OBSAHEM */
#main {
  padding-top: 0 !important;
}
.dt-hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 70% center !important;
  transform: none !important;
  left: 0 !important;
}
/* MENŠÍ KARTY SLUŽEB */
.dt-services {
  gap: 12px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.dt-card {
  min-height: 180px !important;
}

.dt-card-image {
  width: 38% !important;
}

.dt-card-content {
  padding: 42px 16px 12px 18px !important;
}

.dt-card-content h2 {
  font-size: 18px !important;
  margin-bottom: 7px !important;
}

.dt-card-content p {
  font-size: 13px !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}

.dt-service-icon {
  width: 46px !important;
  height: 46px !important;
  top: 12px !important;
  left: 17px !important;
}
/* OBRÁZKY V KARTÁCH – VĚTŠÍ */
.dt-card-image {
  width: 42% !important;
  min-width: 42% !important;
  overflow: hidden !important;
}

.dt-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.dt-card-content a {
  display: none !important;
}
.dt-card {
  grid-template-columns: 45% 55% !important;
}

.dt-card-image {
  width: 100% !important;
  min-width: 0 !important;
}

.dt-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.dt-service-icon {
  display: none !important;
}
/* PODROBNOSTI SLUZEB */
.dt-detail {
  background: #fff;
  margin: 20px 30px;
  padding: 28px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 19px rgba(0,0,0,.08);
}

.dt-detail h2 {
  color: #075bb5;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.dt-detail p {
  margin: 8px 0;
  line-height: 1.5;
}

.dt-detail + .dt-detail {
  margin-top: 16px;
}
/* Větší mezera před kontaktem */
.dt-contact {
  margin-top: 25px !important;
}
.dt-buttons {
  position: relative !important;
  top: -18px !important;
  z-index: 20 !important;
}
/* ===== PODROBNÉ INFORMACE O SLUŽBÁCH ===== */

.dt-detail {
  position: relative;
  background: #ffffff;
  margin: 18px 30px !important;
  padding: 28px 32px 28px 38px !important;
  border-radius: 10px;
  border-left: 5px solid #075bb5;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

.dt-detail h2 {
  margin: 0 0 12px 0 !important;
  color: #075bb5 !important;
  font-size: 24px !important;
  line-height: 1.2;
  font-weight: 800 !important;
}

.dt-detail p {
  margin: 7px 0 !important;
  max-width: 950px;
  color: #30343a;
  font-size: 15px;
  line-height: 1.55;
}

.dt-detail p strong {
  color: #171a1f;
  font-size: 16px;
}

/* Při prokliku neschovat nadpis pod hlavičku */
.dt-detail {
  scroll-margin-top: 110px;
}

/* MOBIL */
@media (max-width: 760px) {
  .dt-detail {
    margin: 15px !important;
    padding: 23px 20px 23px 25px !important;
  }

  .dt-detail h2 {
    font-size: 21px !important;
  }

  .dt-detail p {
    font-size: 14px;
  }
}.dt-pigeons,
#holubi {
  margin: 18px 30px !important;
  padding: 28px 32px 28px 38px !important;
  background: #fff !important;
  border-radius: 10px !important;
  border-left: 5px solid #075bb5 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.07) !important;
}

#holubi .dt-detail {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
/* SPODNI KONTAKTNI BLOK */
.dt-final-contact {
  background: #fff !important;
  border-left: 5px solid #1266b3 !important;
  border-radius: 10px !important;
  padding: 28px 40px !important;
  margin: 30px 30px 40px !important;
  box-shadow: 0 5px 19px rgba(0,0,0,.08) !important;
}

.dt-final-contact h2 {
  color: #1266b3 !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
}

.dt-final-contact p {
  font-size: 16px !important;
  margin: 0 0 20px !important;
}

.dt-final-contact-buttons {
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

.dt-final-contact-buttons a {
  display: inline-block !important;
  padding: 12px 22px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.dt-final-phone {
  background: #ed171c !important;
  color: #fff !important;
}

.dt-final-form {
  background: #1266b3 !important;
  color: #fff !important;
}
/* PATIČKA WEBU */
#footer,
.footer {
  background: #f7f8fa !important;
  padding: 28px 30px 20px !important;
  margin-top: 30px !important;
  border-top: 1px solid #e5e7eb !important;
}

#footer h2,
#footer h3,
.footer h2,
.footer h3 {
  color: #1266b3 !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
}

#footer p,
.footer p {
  margin: 4px 0 !important;
  line-height: 1.45 !important;
}

#footer a,
.footer a {
  color: #1266b3 !important;
  text-decoration: none !important;
}

#footer a:hover,
.footer a:hover {
  text-decoration: underline !important;
}
/* ODSTRANENI MEZERY PRED PATICKOU */
#main {
  padding-bottom: 0 !important;
}

.main > .container:first-child,
.container-article {
  padding-bottom: 0 !important;
}

#footer,
.footer {
  margin-top: 0 !important;
}
/* ===== PATICKA WEBU ===== */

#footer,
.footer {
  background: #f4f6f8 !important;
  border-top: 1px solid #e1e5e9;
  padding-top: 32px !important;
  padding-bottom: 18px !important;
}

/* Nadpisy Adresa a Kontakt */
#footer h2,
#footer h3,
.footer h2,
.footer h3 {
  color: #0b4fa2 !important;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Běžný text */
#footer,
.footer {
  color: #252a30;
}

/* Odkazy */
#footer a,
.footer a {
  color: #0b5eb8;
  text-decoration: none;
}

#footer a:hover,
.footer a:hover {
  text-decoration: underline;
}

/* Spodní copyright */
#footer .copyright,
.footer .copyright {
  font-size: 14px;
  opacity: 0.75;
}
/* Skrytí textu "Běží na inPage s AI" v patičce */
.footer__poweredby {
  display: none !important;
}
/* VĚTŠÍ LOGO V HLAVIČCE */
#header .navbar__brand-logo-img {
  width: 430px !important;
  max-width: 430px !important;
  height: auto !important;
  max-height: 95px !important;
}
#header .navbar__brand {
  padding-left: 170px !important;
}
/* ===== HLAVIČKA ===== */

#header {
  height: 95px !important;
  min-height: 95px !important;
  padding: 0 !important;
  background: #fff !important;
}

/* Logo */
#header .navbar__brand-logo-img {
  width: 430px !important;
  max-width: 430px !important;
  height: auto !important;
  max-height: 95px !important;
  object-fit: contain !important;
}
/* ===== MOBILNÍ HLAVIČKA ===== */
@media screen and (max-width: 767px) {

  #header {
    height: auto !important;
    min-height: 80px !important;
    padding: 0 15px !important;
  }

  #header .navbar__brand-logo-img {
    width: 230px !important;
    max-width: 230px !important;
    height: auto !important;
    max-height: 70px !important;
  }

  #header .contactus-wrap {
    display: none !important;
  }

  #navbar {
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  #nav-toggle {
    margin-left: auto !important;
  }
}
/* ===== DOLADĚNÍ MOBILNÍ HLAVIČKY ===== */
@media screen and (max-width: 767px) {

  #navbar {
    width: 100% !important;
    padding: 0 !important;
  }

  #header .navbar__brand {
    margin: 0 !important;
    padding: 0 !important;
  }

  #header .navbar__brand-title {
    margin: 0 !important;
    padding: 0 !important;
  }

  #header .navbar__brand-logo-img {
    width: 230px !important;
    max-width: 230px !important;
    height: auto !important;
    margin: 0 !important;
  }

  #nav-toggle {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 767px) {

  .dt-hero {
    min-height: 620px !important;
  }

  .dt-hero-content {
    padding-top: 170px !important;
    padding-bottom: 35px !important;
  }
}
@media screen and (max-width: 767px) {

  .dt-hero {
    min-height: 580px !important;
  }

  .dt-hero-content {
    min-height: 580px !important;
    justify-content: flex-start !important;
    padding: 150px 22px 10px !important;
  }
}
/* MOBIL – širší karty a menší vnitřní odsazení */
@media screen and (max-width: 767px) {

  .dt-detail,
  .dt-pigeons,
  .dt-final-contact {
    width: calc(100% - 20px) !important;
    max-width: none !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
  }

}
/* MOBIL – HOLUBI přes celou šířku jako ostatní karty */
@media screen and (max-width: 767px) {

  .dt-pigeons {
    width: calc(100% - 20px) !important;
    max-width: none !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
  }
}
/* MOBIL – OCHRANA PROTI HOLUBŮM */
@media screen and (max-width: 767px) {

  #holubi {
    width: auto !important;
    max-width: none !important;
    margin: 18px 10px !important;
    padding: 28px 18px !important;
    box-sizing: border-box !important;
  }
  @media screen and (max-width: 767px) {
    .dt-final-contact {
      width: calc(100% - 40px) !important;
      margin-left: 20px !important;
      margin-right: 20px !important;
      padding: 28px 22px !important;
    }
    /* MOBIL – kompaktní patička */
    @media screen and (max-width: 767px) {

      #footer {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
      }

      #footer .container {
        padding-top: 24px !important;
        padding-bottom: 14px !important;
      }

      #footer .footer__col--address {
        margin-bottom: 18px !important;
      }

      #footer .footer__col--contact {
        margin-bottom: 0 !important;
      }

      #footer .footer__copy {
        margin-top: 22px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
      }
    }
    @media screen and (max-width: 767px) {

    .dt-detail,
    .dt-pigeons,
    .dt-final-contact {
        width: calc(100% - 20px) !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
        box-sizing: border-box !important;
    }

}
