html {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 17px;
  scroll-behavior: smooth;
  line-height: 1.5em;
}

body {
  margin: 0;
  padding: 0;
}

:root {
  --colorBlack: #000000;
  --colorRed: #dc2b19;
  --colorWhite: #ffffff;
}

h1 {
  line-height: 2.5rem;
  margin: 0;
  padding: 0;
  text-align: center;
}

h2,
h3,
h4,
h5,
h6 {
  position: relative;
  line-height: 2rem;
}
h2:after,
h3:after,
h4:after,
h5:after,
h6:after {
  content: "";
  background: var(--colorRed);
  position: absolute;
  top: calc(100% + 15px);
  height: 2px;
  left: 0;
  width: 50px;
}

h2 {
  margin-bottom: 50px;
  margin-top: 50px;
  scroll-padding: 50px;
}

h3 {
  margin-bottom: 40px;
  margin-top: 40px;
}

h4,
h5,
h6 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.header {
  border-bottom: 1px solid var(--colorBlack);
}
.header .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px auto 0;
}
@media (min-width: 1200px) {
  .header .container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: nowrap;
    margin: 0 auto;
  }
}
.header .logo {
  height: auto;
}
.header .logo--mobile {
  order: -2;
  display: none;
}
@media (max-width: 1200px) {
  .header .logo--mobile {
    display: initial;
    max-width: 70px;
  }
}
.header .logo--desktop {
  display: none;
}
@media (min-width: 1200px) {
  .header .logo--desktop {
    display: initial;
    max-width: 350px;
  }
}
.header .font-size-changer {
  margin-left: 30px;
  order: -1;
}
@media (min-width: 1200px) {
  .header .font-size-changer {
    order: unset;
  }
}
.header .font-size-changer button {
  border: 1px solid var(--colorRed);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  padding: 12px 12px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-weight: 900;
}
@media (min-width: 1200px) {
  .header .font-size-changer button {
    padding: 15px 15px;
  }
}
.header .font-size-changer button:hover {
  background: var(--colorRed);
  color: var(--colorWhite);
}
.header .font-size-changer button:disabled {
  opacity: 0.5;
  border-color: var(--colorBlack) !important;
}
.header .language-changer {
  display: inline-flex;
  margin-right: 30px;
  margin-left: 30px;
  padding-top: 20px;
  order: -1;
  gap: 10px;
}
@media (min-width: 340px) {
  .header .language-changer {
    margin-right: 0;
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .header .language-changer {
    order: unset;
  }
}
.header .language-changer a {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 35px;
  width: 35px;
  font-size: 0px;
}
.header .language-changer-en-button {
  background-image: url("../images/united-kingdom.svg");
}
.header .language-changer-ua-button {
  background-image: url("../images/ukraine.svg");
}
.header .language-changer-pl-button {
  background-image: url("../images/poland.svg");
}

.menu li {
  list-style: none;
  text-align: center;
}
.menu ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  align-items: center;
}
@media (min-width: 1200px) {
  .menu ul {
    flex-wrap: nowrap;
  }
}
.menu a {
  text-decoration: none;
  color: var(--colorBlack);
  position: relative;
  display: block;
}
.menu a:after {
  content: "";
  background: var(--colorRed);
  position: absolute;
  top: calc(100% + 7px);
  height: 2px;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  outline: none;
}
.menu a:hover:after {
  opacity: 1;
  top: calc(100% + 3px);
}
.menu--main {
  width: 100%;
}
@media (min-width: 1200px) {
  .menu--main {
    margin-left: auto;
    width: auto;
  }
}
.city-logo {
  margin-right: auto !important;
  margin-left: 0 !important;
  max-width: 200px !important;
  width: 100%;
  height: auto;
}

.image-hero {
  display: block;
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
}
@media (min-width: 1200px) {
  .image-hero {
    -o-object-position: center 25%;
       object-position: center 25%;
    max-height: 400px;
  }
}

.main {
  padding: 0 0 30px;
}
.main .container img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.footer {
  border-top: 1px solid var(--colorBlack);
  padding: 30px 0;
}
.footer .menu--footer ul {
  justify-content: center;
}
.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
}
@media (min-width: 1200px) {
  .footer__info {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
  }
}
.footer__info a {
  text-decoration: none;
  color: var(--colorBlack);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.columns-two {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .columns-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.columns-two .column {
  margin-bottom: 30px;
}

.article {
  margin-bottom: 120px;
}

.p--bigger {
  font-size: 1.1rem;
}
.p--h1 {
  line-height: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
}
.p--header {
  margin-top: 70px;
}

.update-on-deployment {
  background: orange;
}/*# sourceMappingURL=styles.css.map */