:root {
  --black: #000000;
  --dark: #3f3f3f;
  --gray: #ebebeb;
  --blue: #1795d0;
  --purple: #611ded;
  --fp: "Archivo", sans-serif;
  --ft: "Plus Jakarta Sans", sans-serif;
  --bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease: 0.4s ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 1;
  background: #fff;
}
html::-webkit-scrollbar {
  width: 8px;
  background: #eee;
}
html::-webkit-scrollbar-thumb {
  width: 8px;
  background: var(--blue);
}
img {
  border-style: none;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  display: block;
}
hr {
  box-sizing: content-box;
  overflow: visible;
}
a {
  text-decoration: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  margin: 0;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button;
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  background: rgba(0, 0, 0, 0);
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
  background: rgba(0, 0, 0, 0);
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="search"] {
  appearance: textfield;
  outline-offset: -2px;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  display: none;
  opacity: 0;
  visibility: hidden;
}
[type="search"]::-webkit-search-decoration {
  appearance: none;
}
::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}
.__no-scroll {
  overflow: hidden !important;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--fp);
  color: var(--dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ft);
  font-weight: 800;
}
h3 {
  line-height: 88.8888888889%;
  font-size: 3.75em;
}
h4 {
  line-height: 88.8888888889%;
  font-size: 2.8125em;
}
@media (max-width: 575px) {
  h4 {
    font-size: 2.1875em;
  }
}
h5 {
  font-size: 2.25em;
  line-height: 125%;
}
p,
li {
  line-height: 150%;
}
header {
  width: 100%;
  height: fit-content;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  z-index: 10;
  transition: var(--ease);
}
header ._header-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  header ._header-content {
    background: #fff;
  }
}
header ._header-content ._header-leftBx {
  width: fit-content;
  height: fit-content;
  position: initial;
  display: flex;
  align-items: center;
}
header ._header-content ._header-leftBx ._menu-toggler {
  width: 85px;
  height: 85px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  z-index: 2;
  transition: var(--ease);
}
@media (max-width: 575px) {
  header ._header-content ._header-leftBx ._menu-toggler {
    width: 60px;
    height: 50px;
    background: #fff;
  }
}
header ._header-content ._header-leftBx ._menu-toggler button {
  width: 25px;
  height: 25px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}
header ._header-content ._header-leftBx ._menu-toggler button span {
  width: 100%;
  height: 5px;
  position: relative;
  display: block;
  background: #fff;
  transform-origin: center;
  transition: var(--ease);
}
@media (max-width: 575px) {
  header ._header-content ._header-leftBx ._menu-toggler button span {
    background: var(--blue);
  }
}
header ._header-content ._header-leftBx ._menu-toggler button::before,
header ._header-content ._header-leftBx ._menu-toggler button::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 5px;
  position: relative;
  display: block;
  background: #fff;
  transform-origin: center;
  transition: var(--ease);
}
@media (max-width: 575px) {
  header ._header-content ._header-leftBx ._menu-toggler button::before,
  header ._header-content ._header-leftBx ._menu-toggler button::after {
    background: var(--blue);
  }
}
header ._header-content ._header-leftBx ._menu-toggler._Active {
  background: #fff;
}
header ._header-content ._header-leftBx ._menu-toggler._Active button span,
header ._header-content ._header-leftBx ._menu-toggler._Active button::before,
header ._header-content ._header-leftBx ._menu-toggler._Active button::after {
  background: var(--blue);
}
header ._header-content ._header-leftBx ._menu-toggler._Active button::before {
  width: 7px;
}
header ._header-content ._header-leftBx ._menu-toggler._Active button span {
  width: 16px;
}
header ._header-content ._header-leftBx ._logo {
  width: fit-content;
  height: 85px;
  position: relative;
  display: block;
  background: #fff;
  padding: 15px 25px;
}
@media (max-width: 575px) {
  header ._header-content ._header-leftBx ._logo {
    padding: 10px 0;
    height: 70px;
  }
}
header ._header-content ._header-leftBx ._logo a {
  width: fit-content;
  height: 100%;
  position: relative;
  display: block;
}
header ._header-content ._header-leftBx ._logo a img {
  height: 100%;
  object-fit: contain;
}
header ._header-content ._header-leftBx ._navigation {
  width: 100%;
  height: 100vh;
  position: absolute;
  display: none;
  background: var(--blue) url(../img/nv_img.jpg) no-repeat center;
  background-size: cover;
  background-blend-mode: soft-light;
  padding: 40px 30px;
  top: 0;
  left: 0;
  z-index: 1;
}
header ._header-content ._header-leftBx ._navigation nav {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ._header-content ._header-leftBx ._navigation nav ul {
  width: 100%;
  position: relative;
  display: block;
  max-width: 550px;
}
header ._header-content ._header-leftBx ._navigation nav ul li {
  width: fit-content;
  position: relative;
  display: block;
  line-height: 100%;
  margin: 0 auto;
  padding: 10px 0;
  transition: var(--ease);
}
header ._header-content ._header-leftBx ._navigation nav ul li > a {
  width: fit-content;
  position: relative;
  display: block;
  line-height: 100%;
  text-align: center;
  font-size: 4.375em;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 0 auto;
  font-family: var(--ft);
  transition: var(--ease);
}
@media (max-width: 575px) {
  header ._header-content ._header-leftBx ._navigation nav ul li > a {
    font-size: 2.5em;
  }
}
header
  ._header-content
  ._header-leftBx
  ._navigation
  nav
  ul
  li:not(:last-of-type) {
  border-bottom: 1px solid var(--dark);
}
@media not all and (pointer: coarse) {
  header ._header-content ._header-leftBx ._navigation nav ul li:hover > a {
    color: #fff;
  }
  header
    ._header-content
    ._header-leftBx
    ._navigation
    nav
    ul
    li:hover:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
}
header
  ._header-content
  ._header-leftBx
  ._navigation
  nav
  ul
  li.hasChildren
  ._Children {
  width: 100%;
  position: relative;
  display: block;
}
header
  ._header-content
  ._header-leftBx
  ._navigation
  nav
  ul
  li.hasChildren
  ._Children
  ._Children-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  padding-top: 10px;
}
header
  ._header-content
  ._header-leftBx
  ._navigation
  nav
  ul
  li.hasChildren
  ._Children
  ._Children-wrapper
  a {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--ft);
  color: var(--purple);
}
header
  ._header-content
  ._header-leftBx
  ._navigation
  nav
  ul
  li.hasChildren
  ._Children
  ._Children-wrapper
  a
  img {
  width: 20px;
  margin-left: 7px;
}
header ._header-content ._header-leftBx ._navigation ._social-networks {
  width: 100%;
  position: relative;
  display: block;
  margin-top: 15px;
}
header ._header-content ._header-leftBx ._navigation ._social-networks ul {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  row-gap: 15px;
}
header ._header-content ._header-leftBx ._navigation ._social-networks ul li {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
header ._header-content ._header-leftBx ._navigation ._social-networks ul li a {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  filter: brightness(20%);
  transition: var(--ease);
}
header
  ._header-content
  ._header-leftBx
  ._navigation
  ._social-networks
  ul
  li
  a
  img {
  height: 100%;
  object-fit: contain;
}
@media not all and (pointer: coarse) {
  header
    ._header-content
    ._header-leftBx
    ._navigation
    ._social-networks
    ul
    li
    a:hover {
    filter: brightness(100%);
  }
}
header ._header-content ._header-rightBx {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
  padding: 0 40px;
}
@media (max-width: 575px) {
  header ._header-content ._header-rightBx {
    padding: 0 10px;
  }
}
header ._header-content ._header-rightBx ._header-rightBx_wrapper {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
header ._header-content ._header-rightBx ._header-rightBx_wrapper ._links {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
header ._header-content ._header-rightBx ._header-rightBx_wrapper ._links ul {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
}
@media (max-width: 768px) {
  header ._header-content ._header-rightBx ._header-rightBx_wrapper ._links ul {
    column-gap: 20px;
  }
}
@media (max-width: 575px) {
  header ._header-content ._header-rightBx ._header-rightBx_wrapper ._links ul {
    column-gap: 10px;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
  line-height: 100%;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li
  > a {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
  color: #fff;
  font-weight: 700;
  font-family: var(--ft);
  text-transform: uppercase;
  font-size: 0.875em;
  letter-spacing: 0.08em;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li
  > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--blue);
  bottom: -5px;
  left: 0;
  z-index: 1;
  transition: var(--ease);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li
  > a
  span {
  color: inherit;
  font-family: inherit;
}
@media (max-width: 768px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li
    > a
    span {
    display: none;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li
  > a
  figure {
  width: 35px;
  height: 35px;
  position: relative;
  display: none;
  padding: 5px;
  background: var(--blue);
  border-radius: 5px;
}
@media (max-width: 768px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li
    > a
    figure {
    display: block;
  }
}
@media (max-width: 575px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li
    > a
    figure {
    width: 33px;
    height: 33px;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li
  > a
  figure
  img {
  filter: brightness(0) invert(1);
  height: 100%;
  object-fit: contain;
}
@media not all and (pointer: coarse) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li
    > a:hover::before {
    width: 75%;
  }
}
@media (max-width: 768px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li.highlight {
    display: none;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li.highlight
  a {
  padding: 12px 16px;
  background: var(--blue);
  border-radius: 30px;
  text-shadow: unset;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li.highlight
  a::before {
  display: none;
}
@media (max-width: 575px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li.highlight
    a {
    padding: 12px 10px;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content {
  width: 300px;
  position: absolute;
  display: block;
  background: #fff;
  transform: translateX(37%);
  padding: 40px 30px;
  top: calc(100% + 10px);
  filter: drop-shadow(0px 14px 14px rgba(0, 0, 0, 0.35));
  right: 0;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: var(--ease);
}
@media (max-width: 768px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li._login
    ._login-content {
    transform: translateX(0);
    padding: 30px 20px;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 13px solid rgba(0, 0, 0, 0);
  border-right: 13px solid rgba(0, 0, 0, 0);
  border-bottom: 13px solid #fff;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li._login
    ._login-content::before {
    left: unset;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper {
  width: 100%;
  position: relative;
  display: block;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._user {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._user
  figure {
  width: 50px;
  position: relative;
  display: block;
  margin-right: 10px;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._user
  h6 {
  width: calc(100% - 60px);
  position: relative;
  display: block;
  color: var(--blue);
  font-weight: 700;
  font-family: var(--ft);
  text-transform: uppercase;
  font-size: 0.875em;
  letter-spacing: 0.08em;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form {
  width: 100%;
  position: relative;
  display: block;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form {
  width: 100%;
  position: relative;
  display: block;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 15px;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input {
  width: 100%;
  position: relative;
  display: block;
  border: 1px solid #ebebeb;
  padding: 12px 15px;
  color: var(--dark);
  font-family: var(--ft);
  caret-color: var(--blue);
  transition: var(--ease);
  font-size: 0.9375em;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input.placeholder {
  color: var(--dark);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input:-moz-placeholder {
  color: var(--dark);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input::-moz-placeholder {
  color: var(--dark);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input:-ms-input-placeholder {
  color: var(--dark);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input::-webkit-input-placeholder {
  color: var(--dark);
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._input
  input:is(:focus, :active) {
  background: #ebebeb;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._submit {
  width: 100%;
  position: relative;
  display: block;
  margin-top: 20px;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._submit
  button {
  width: 100%;
  position: relative;
  display: block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-family: var(--ft);
  text-transform: uppercase;
  font-size: 0.875em;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  transition: var(--ease);
}
@media not all and (pointer: coarse) {
  header
    ._header-content
    ._header-rightBx
    ._header-rightBx_wrapper
    ._links
    ul
    li._login
    ._login-content
    ._login-content_wrapper
    ._form
    form
    ._submit
    button:hover {
    background: #137bab;
  }
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._forgot-password {
  width: 100%;
  position: relative;
  display: block;
  margin-top: 20px;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content
  ._login-content_wrapper
  ._form
  form
  ._forgot-password
  a {
  width: 100%;
  position: relative;
  display: block;
  color: var(--blue);
  font-family: var(--ft);
  font-weight: 700;
  text-align: center;
}
header
  ._header-content
  ._header-rightBx
  ._header-rightBx_wrapper
  ._links
  ul
  li._login
  ._login-content._onShow {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 20px);
}
header.__fixed {
  backdrop-filter: blur(5px);
}

aside.whatsapp_widget {
    width: fit-content;
    height: fit-content;
    position: fixed;
    display: block;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

aside.whatsapp_widget a.whatsapp_widget--link {
    width: 60px;
    position: relative;
    display: block;
    filter: drop-shadow(3px 4px 6px #00000042);
}

@media screen and (max-width: 575px) {
    aside.whatsapp_widget {
        bottom: 10px;
        right: 10px;
    }
}

footer {
  width: 100%;
  position: relative;
  display: block;
  background: #212121;
  padding-top: 70px;
}
footer ._footer-content {
  width: 100%;
  position: relative;
  display: block;
}
footer ._footer-content ._footer-topBx {
  width: 85%;
  max-width: 1366px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 40px;
}
@media (max-width: 768px) {
  footer ._footer-content ._footer-topBx {
    width: 90%;
  }
}
footer ._footer-content ._footer-topBx ._logo-ftr {
  width: calc(33.3333333333% - 40px);
  position: relative;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  footer ._footer-content ._footer-topBx ._logo-ftr {
    width: 100%;
  }
}
footer ._footer-content ._footer-topBx ._logo-ftr a {
  width: 100%;
  position: relative;
  max-width: 230px;
  display: block;
}
footer ._footer-content ._footer-topBx ._data {
  width: calc(33.3333333333% - 40px);
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  footer ._footer-content ._footer-topBx ._data {
    width: 100%;
  }
}
footer ._footer-content ._footer-topBx ._data h6 {
  width: 100%;
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 15px;
}
footer ._footer-content ._footer-topBx ._data p {
  width: 100%;
  position: relative;
  display: block;
  font-size: 0.875em;
  font-family: var(--ft);
  color: #fff;
}
footer ._footer-content ._footer-topBx ._data p a {
  color: inherit;
  font-family: var(--ft);
}
@media not all and (pointer: coarse) {
  footer ._footer-content ._footer-topBx ._data p a:hover {
    text-decoration: underline;
  }
}
footer ._footer-content ._footer-topBx ._data ._social-networks {
  width: 100%;
  position: relative;
  display: block;
  margin-top: 15px;
}
footer ._footer-content ._footer-topBx ._data ._social-networks ul {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 15px;
  row-gap: 15px;
}
footer ._footer-content ._footer-topBx ._data ._social-networks ul li {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
footer ._footer-content ._footer-topBx ._data ._social-networks ul li a {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  filter: brightness(0) invert(1);
}
footer ._footer-content ._footer-topBx ._data ._social-networks ul li a img {
  height: 100%;
  object-fit: contain;
}
footer ._footer-content ._footer-bottomBx {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px 7.5%;
  border-top: 1px solid #fff;
}
footer ._footer-content ._footer-bottomBx p {
  width: calc(100% - 110px);
  max-width: 1366px;
  position: relative;
  display: block;
  color: #fff;
  font-size: 0.875em;
  font-family: var(--ft);
}
@media (max-width: 768px) {
  footer ._footer-content ._footer-bottomBx {
    width: 90%;
  }
  footer ._footer-content ._footer-bottomBx p {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
}
footer ._footer-content ._footer-bottomBx a {
  width: 110px;
  position: relative;
  display: block;
  margin: 0 auto;
}
