@charset "UTF-8";
/* updating the gutenberg editor */
.wp-block {
  max-width: none !important;
  padding: unset !important;
  margin: unset !important;
  width: 100% !important;
}

.wp-block-column {
  word-break: keep-all !important;
}

.rich-text {
  padding: 0 !important;
  margin: 0 !important;
}

.editor-styles-wrapper {
  padding-inline: 0 !important;
  margin: 0 !important;
}

.relative {
  position: relative;
}

.wp-block-media-text__media img {
  max-width: min(700px, 43vw) !important;
}

.relative .wp-block-media-text img {
  position: absolute;
  bottom: 0;
  right: 0px;
}

.wp-block-columns {
  gap: 4rem;
}

.wp-block-media-text {
  grid-gap: 1.5rem !important;
}

.column-gap {
  gap: 50px;
}

/* deklarace proměnných barev, fontů, velikosti a tučnosti */
:root {
  /* Colors */
  --clr-primary-100: #c21b17;
  --clr-neutral-100: #000;
  --clr-neutral-200: #fff;
  --clr-accent-200: #f1f1f1;
  /*Fonts*/
  --ff-primary: "Roboto", serif;
  --ff-secondary: "Roboto", sans-serif;
  /* Font weight */
  --fw-regular: 400;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  /* Font sizes */
  --fs-400: 1rem;
  --fs-500: 1.25rem;
  --fs-600: 2rem;
  --fs-700: 4rem;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: unset;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 15rem;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/** &general **/
.container {
  max-width: 1550px;
  margin: 0 auto;
  padding-inline: 15px;
}

main {
  color: var(--clr-neutral-100);
  font-size: var(--fs-500);
  font-weight: 100;
  font-family: var(--ff-secondary);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.button {
  display: inline;
  background-color: var(--clr-primary-100);
  color: var(--clr-neutral-200);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 15px 40px;
  transition: 0.3s;
  font-size: 20px;
}
.button :hover {
  background-color: #a41a16 !important;
}

.button-white {
  background-color: var(--clr-neutral-200) !important;
  color: var(--clr-primary-100) !important;
  font-weight: var(--fw-bold);
}

.offers {
  display: flex;
  max-width: 1000px;
  flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}
.offers .offer {
  width: 250px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  row-gap: 1rem;
  background-color: var(--clr-neutral-200);
  border-radius: 10px;
}
.offers .offer p {
  font-weight: var(--fw-bold);
  font-family: var(--ff-primary);
  max-width: 200px;
  font-size: 24px;
  padding-left: 30px;
  padding-bottom: 30px;
}
.offers i {
  color: var(--clr-primary-100);
  font-size: 3.25rem;
  margin: auto auto;
}

.questions {
  color: var(--clr-neutral-200) !important;
}
.questions * {
  gap: 0px;
}
.questions #mapDiv {
  width: 200px !important;
}
.questions iframe {
  max-width: 100%;
}
.questions svg {
  color: var(--clr-neutral-200);
  fill: var(--clr-neutral-200);
}
.questions .icons {
  column-gap: 20px !important;
}

@media (max-width: 500px) {
  .questions svg {
    margin-top: 20px;
  }
}
.text_center {
  text-align: center;
}

.fw-bold {
  font-weight: var(--fw-semi-bold);
}

.primary_heading {
  font-family: var(--ff-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-700);
  margin-bottom: 10px;
  line-height: 1.3;
  max-width: 750px;
}

.ph-red {
  color: var(--clr-primary-100);
}

.secondary_heading {
  font-weight: var(--fw-bold);
  font-size: var(--fs-600);
  color: var(--clr-primary-100);
}

.About-me {
  position: relative;
}
.About-me img {
  border-radius: 10px;
}

/* &footer */
footer {
  font-family: var(--ff-secondary);
  background-color: var(--clr-accent-200);
  color: var(--clr-neutral-100);
  padding-block: 50px;
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
}

.footer_wrapper-flex {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer_wrapper-flex i {
  font-size: 30px;
  color: var(--clr-primary-100);
}

/* &breakpoints*/
@media (max-width: 800px) {
  .wp-block-media-text__content {
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  .relative {
    padding: unset !important;
    margin: unset !important;
  }
  .wp-block-media-text__media img {
    max-width: none !important;
  }
  .wp-block-media-text {
    display: block !important;
  }
  .wp-block-media-text img {
    position: unset !important;
  }
  /* footer-BP */
  .footer_wrapper {
    flex-direction: column;
    padding-block: 40px;
  }
  .footer_wrapper p {
    margin-block: 0;
    text-align: center;
  }
  .footer_wrapper-flex {
    flex-direction: column;
  }
  .footer_wrapper-flex p {
    order: 1;
  }
  .footer_wrapper-flex a {
    order: 2;
  }
  .ordered-list {
    margin-left: 0px;
  }
}
@media (max-width: 900px) {
  .news p {
    margin-block: 16px;
  }
}
