:root {
  --font-family: 'IBM Plex Sans', sans-serif;
  --second-family: 'Murs Gothic', sans-serif;

  --purple: #6d38ff;
  --blue: #384bfe;
  --red: #e53d24;
  --yellow: #f5bc3f;
  --green: #c9ff3e;
  --dark: #202020;
  --light: #f5f4ee;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: var(--font-family);
  background: var(--light);
  position: relative;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  display: block;
}

.hover {
  transition: all 200ms;
  cursor: pointer;
}
.hover:hover {
  opacity: 0.8;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: fit-content;
}

.icon img {
  object-fit: contain;
}

.container {
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 16px;
}

.button {
  border-radius: 8px;
  padding: 6px 32px 10px;
  width: fit-content;
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 16px;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
  outline: none;
  position: relative;
  display: flex;
  justify-content: center;
}

.button-icon {
  position: absolute;
  display: flex;
  left: 8px;
  bottom: 0;
  width: 18px;
}

.button-icon-right {
  right: 0;
  left: auto;
  bottom: 13px;
  width: 12px;
}

.button-black {
  background: var(--dark);
}
.button-black:hover {
  background: #484848;
}

.button-white {
  background: var(--light);
  color: var(--purple);
}
.button-white:hover {
  background: #bfbfbf;
}

.button-red {
  background: var(--red);
}
.button-red:hover {
  background: #b23320;
}

.button-blue {
  background: var(--blue);
}
.button-blue:hover {
  background: #1827b3;
}

.button-purple {
  background: var(--purple);
}
.button-purple:hover {
  background: #481fba;
}

header {
  position: fixed;
  top: 24px;
  z-index: 10;
  padding: 0 16px;
  width: 100%;
}

.header-content {
  background: var(--light);
  border-radius: 20px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  max-width: 1288px;
}

.header-logo {
  width: 80px;
  cursor: pointer;
  transition: all 200ms;
}
.header-logo:hover {
  opacity: 0.8;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style-type: none;
}

.header-menu-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  transition: all 200ms;
}
.header-menu-link:hover {
  opacity: 0.8;
}

.header-button {
  background: var(--purple);
}
.header-button:hover {
  background: #481fba;
}

.date-n-place-label {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;

  border-radius: 12px;
  padding: 8px 16px;
  background: var(--red);

  font-family: var(--second-family);
  font-weight: 800;
  font-size: 14px;
  line-height: 143%;
  color: var(--light);
}

.date-n-place-label:nth-child(2) {
  background: var(--yellow);
  color: var(--dark);
}

.date-n-place-label-icon {
  width: 16px;
  height: 16px;
}

main {
  position: relative;
  z-index: 2;
}

footer {
  position: relative;
  margin-top: 120px;
  padding: 0 16px 12px;
}

.footer-shadow-default {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.footer-shadow-default img,
.footer-shadow-left img,
.footer-shadow-right img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-shadow-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-shadow-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer-content {
  max-width: 1288px;
  margin: 0 auto;
  background: var(--light);
  border-radius: 32px;
  padding: 32px 32px 12px;
  position: relative;
  z-index: 2;
}

.footer-content-main {
  display: flex;
  gap: 24px;
}

.footer-logo {
  width: 80px;
}

.footer-logo-tags {
  margin-top: 10px;
}
.footer-logo-tags .date-n-place-label:nth-child(1) {
  transform: rotate(-4deg);
  z-index: 2;
  position: relative;
}
.footer-logo-tags .date-n-place-label:nth-child(2) {
  transform: rotate(3deg);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 24px;
}

.footer-menu-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--dark);
}

.footer-contacts {
  max-width: 288px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contacts-item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #868686;
}

.footer-contacts-item-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--purple);
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  margin-top: 24px;
  gap: 12px;
}

.footer-socials-item {
  width: 32px;
}

.footer-content-bottom {
  margin-top: 24px;
  border-top: 1px solid #e4e4e4;
  padding-top: 12px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.footer-content-bottom-text-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--dark);
}

.footer-content-bottom-link-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--purple);
}

.page-title {
  width: calc(100% - 24px);
  background: var(--purple);
  padding-top: 122px;
  position: relative;
  margin: 12px;
  border-radius: 24px;
  padding-bottom: 33px;
}

.page-title-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-title-pixels {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.page-title-text {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 56px;
  text-align: center;
  color: var(--white);
  padding: 0 16px;
  position: relative;
  z-index: 3;
}

.header-menu-btn {
  border-radius: 8px;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  margin-left: 12px;
  display: none;
}

.select {
  position: relative;
  width: 100%;
}

.select-main {
  width: 100%;
  border-radius: 10px;
  padding: 10px 12px;
  background: #dfdfdf;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 200ms;
}
.select-main:hover {
  background: #c2c2c2;
}

.select-main-icon {
  border-radius: 4px;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.select-main-icon.red {
  background: var(--red);
}
.select-main-icon.blue {
  background: var(--blue);
}
.select-main-icon.yellow {
  background: var(--yellow);
}

.select-main-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--dark);
}
.select-main-value.placeholder {
  color: #868686;
}

.select-main-arrow {
  margin-left: auto;
  transition: all 200ms;
}

.select-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 200ms;
}
.select.active .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-option {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--dark);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  transition: all 200ms;
}
.select-option:hover {
  background: #f5f5f5;
  border-radius: 5px;
}
.select-option.active {
  background: #f5f5f5;
  border-radius: 5px;
}

.select.active .select-main {
  background: #c2c2c2;
}
.select.active .select-main-arrow {
  transform: rotate(180deg);
}

.input {
  border: 1px solid #868686;
  border-radius: 10px;
  padding: 10px 12px;
  width: 100%;
  background: var(--light);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-addon {
  width: 16px;
  height: 16px;
}

.input input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--dark);
}

@media screen and (max-width: 1100px) {
  .button {
    border-radius: 8px;
    padding: 9px 24px 10px;
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 14px;
    color: var(--light);
  }
  .button-icon-right {
    bottom: 6px;
  }
  .header-menu-btn {
    display: flex;
  }
  .header-menu {
    position: absolute;
    top: calc(100% - 20px);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 32px);
    left: 16px;
    background: var(--light);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms;
  }
  .header-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .header-button {
    margin-left: auto;
  }
  .header-content {
    padding: 8px 12px;
  }
}

@media screen and (max-width: 768px) {
  .footer-content-main {
    flex-direction: column;
    align-items: center;
  }
  .footer-menu {
    align-items: center;
    margin-left: 0;
  }
  .footer-contacts {
    margin-left: 0;
    align-items: center;
    max-width: 100%;
  }
  .footer-contacts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-contacts-item-title {
    text-align: center;
  }
  .footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-title-text {
    font-size: 40px;
    line-height: 125%;
  }
  .page-title-pixels {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  .footer-content-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
