
/* -- */


.foot
{
  background-color: var(--accent-color);
  color: white;

  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
}

.foot_content
{
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
}

.foot_content > div
{
  float: left;
}

.foot_content > div > span
{
  font-weight: 600;
}


/* -- */


.foot_logo
{
  float: left;
  width: 115px;
  height: auto;
  aspect-ratio: 1;

  margin-left: 70px;
  margin-right: 80px;
}

.foot_logo img
{
  width: 100%;
  height: 100%;
}


/* -- */


.foot a
{
  color: var(--white-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot a:hover, .foot a:active
{
  color: #D0D0D0;
}


/* -- */


