:root {
  --font-family: 'Poppins', sans-serif;
  --color-white: #ffffff;
  --background-color: #323848;
  --background-footer-color: #323848;
  /* --background-footer-color: #323232; */
  --min-width: 320px;
  --max-width: 768px;
}
body {
  margin: 0;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-white);
  background-color: var(--background-color);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  text-align: center;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
h1 {
  font-size: 24px;
  margin-bottom: 0;
}
h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
address {
  font-style: normal;
}
address p {
  margin-bottom: 5px;
}
a {
  display: block;
  text-decoration: none;
  color: inherit;
}
section {
  margin-top: 30px;
}
header {
  min-width: var(--min-width);
}
footer {
  min-width: var(--min-width);
  margin-top: 50px;
  padding: 20px 0;
  background-color: var(--background-footer-color);
  text-align: center;
}

.container {
  max-width: var(--max-width);
  min-width: var(--min-width);
  margin: 0 auto;
  padding: 0 10px;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 0.75rem;
  color: var(--btn-color);
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid var(--btn-border-color);
  border-radius: 0.375rem;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover {
  color: var(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
}
.btn-outline-light {
  --btn-color: #f8f9fa;
  --btn-border-color: #f8f9fa;
  --btn-hover-color: #000;
  --btn-hover-bg: #f8f9fa;
  --btn-hover-border-color: #f8f9fa;
}
@media screen and (max-width: 426px) {
  .flex-column {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
  }
}
.messengers {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}
.messengers-item {
  width: calc((100% - 2 * 10px) / 3);
}
.icons {
  line-height: 5em;
  width: 24px;
  height: 24px;
}
.icon-logo {
  width: auto;
  height: 50px;
  margin: 0 auto;
  padding-bottom: 10px;
  /*height: auto;
    color: #ffffff;*/
}
.title-text {
  font-size: 18px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;

  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.lang {
  display: flex;
  justify-content: end;
  margin-top: 10px;
}
.lang-change {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  color: var(--color-white);
  background-color: var(--background-color);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.logo {
  text-align: center;
  margin: 50px 0 50px;
}
.text-small {
  font-size: 85%;
}
.social a {
  margin-bottom: 10px;
}
