:root {
  --accent-color: #E91E63;
  --accent-border: #25372a;
  --text-color: #FFFFFF;
  --site-bg-color: #000000;
  --info-bg-color: #0e1812;
  --info-bg-dark: #060a08;
  --bright-border: #08461c;
  --highlight: #3374BA;
  --secondary-color: #009688;
}

* {
  box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--site-bg-color);
  font-size: 14px;
  min-width: auto;
}

body {
  color: var(--text-color);
  font-family: 'IBM Plex Sans', sans-serif;
}

.input,
input {
  font-family: 'IBM Plex Sans', sans-serif;
}

.clickable:hover {
  cursor: pointer;
}

.alert-notice {
  padding: 10px;
  background-color: var(--accent-color);
  color: black;
  text-align: center;
}

.alert-notice span {
  font-weight: bold;
}

.alert-notice a {
  font-weight: bold;
  color: white;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

.center {
  text-align: center !important;
}

.button {
  color: var(--text-color);
  text-transform: uppercase;
  border-radius: 5px;
  background-color: var(--accent-color);

  font-weight: bold;
  display: inline-block;

  height: 60px;
  line-height: 60px;
  min-width: 220px;
}

.button:hover {
  color: var(--info-bg-color);
  background-color: var(--highlight);
}

.button-arrow {
  min-width: 200px;
  position: relative;
  line-height: 45px;
  padding-right: 42px;
}

.button-arrow::after {
  content: '';
  position: absolute;
  background-image: url('/img/arrow_white_right.png') !important;
  width: 40px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
}

.button-arrow:hover::after {
  background-image: url('/img/arrow_black_right.png') !important;
}

div#more-contact-container .button {
  text-transform: uppercase;
  border-radius: 5px;
  background-color: transparent;
  padding: 8px 16px;
  line-height: 40px;
  font-weight: bold;
  display: inline-block;
}

.title {
  font-size: 36px;
  font-weight: 600;
}

strong {
  color: var(--accent-color);
}

#footer_wrapper {
  background-color: black;
}

#footer_block {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
  font-size: 12px;
  gap: 20px;
}

#footer_copyright {
  margin-bottom: 10px;
}

#footer_block #social_blocks {
  min-width: 200px;
  text-align: center;
  padding-top: 10px;
}

#footer_wrapper logo {
  min-width: 120px;
}

#footer_block logo img {
  position: static;
  width: 120px;
}

#footer_block>div:nth-child(2) {
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 900px) {
  #footer_block {
    flex-direction: column;
  }
}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 650px) {
  #footer_block {
    text-align: center;
    flex-direction: column;
  }

}