.header {
  width: 1360px;
  margin: 0 auto;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.button--border {
  border-radius: 30px;
  border: 1px solid black;
  padding: 8px 20px;
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.button--border:hover {
  color: white;
  background-color: black;
}

.button__main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #27474e;
  border: none;
  color: white;
  padding: 15px 25px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  gap: 10px;
}
.btn--hover:hover {
  background-color: #182c30;
}

.site--footer{
  width: 100%;
}

.footer {
  background-color: black;
  width: 100%;
  padding: 70px 0;
  height: auto;
  border-radius: 30px;
  color: white;
}

.copyright{
  background-color: white;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer a {
  color: #d0f600;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.col {
  display: flex;
  flex-direction: column;
  line-height: 2.8;
}
.col a {
  align-self: flex-start;
}

.guide {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  color: #000000;
}

.guide a:hover {
  text-decoration: underline;
  color: #0C0C0C;
}