:root {
  --main-background-color: #51304f;
  --primary-background-color: #ffffff;
  --secondary-background-color: #fbf9f2;
  --footer-background-color: #472946;

  --new-label-background-color: #8a73b3;

  --primary-link-background-color: #dec980;
  --primary-link-background-color-hover: #f5de8a;
  --primary-link-inner-border-color: #ffffff;
  --secondary-link-border-color: #d2d2d2;
  --secondary-link-border-color-hover: #e3cf87;

  --primary-dark-color: #441f1c;
  --content-text-color: #1e1b1b;
  --primary-light-color: #dec980;
  --secondary-light-color: #ffffff;
  --tertiary-light-color: #757272;
  --image-border-light-color: #e3cf87;
  --footer-text-color: rgba(255, 255, 255, 0.6);
  --sponsor-right-column-box-color: #aa904f;

  --dot-color: #e7e7e7;
  --dot-active-color: #bbbbbb;

  --primary-font-family: "Ovo-Regular";
  --secondary-font-family: "Muli-Regular";
  --primary-bold-font-family: "Muli-Bold";
  --secondary-bold-font-family: "Arial-Bold";

  --background-linear-gradient: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 1)
  );

  --font-size-200: 0.75rem;
  --font-size-300: 0.875rem;
  --font-size-400: 1rem;
  --font-size-500: 1.125rem;
  --font-size-600: 1.875rem;
  --font-size-700: 3.25rem;

  --modified-scramble-title-top-offset: 0;
  --modified-scramble-title-right-offset: -1px;
  --double-bordered-image-top-offset: 20px;
  --double-bordered-image-right-offset: -20px;
  --header-ornament-top-offset: -5px;
  --header-ornament-left-offset: -35px;
  --header-ornament-right-offset: -35px;
}

@font-face {
  font-family: "Ovo-Regular";
  src: url("../fonts/Ovo.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/Muli.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Arial-Bold";
  src: url("../fonts/Arial.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/Muli.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Ovo-Bold";
  src: url("../fonts/Ovo.ttf") format("truetype");
  font-weight: 400;
}

*,
*::after,
*::before {
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--main-background-color);
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.didiver {
  margin: 0 10px;
}

.page-footer {
  margin-bottom: 20px;
}


.header-text {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-700);
  color: var(--primary-dark-color);
  line-height: 52px;
}

.small-text {
  font-size: var(--font-size-600);
}

.subheader-text {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-500);
  margin-bottom: 10px;
}

.highlighted-text {
  padding: 0px 5px;
  color: var(--secondary-light-color);
  background-color: var(--new-label-background-color);
}

.bold-text {
  font-family: var(--primary-bold-font-family);
  font-size: var(--font-size-300);
  font-weight: 700;
}

.link {
  text-decoration: none;
  font-family: var(--primary-bold-font-family);
  color: var(--content-text-color);
  font-weight: 700;
}

.primary-link {
  width: 270px;
  height: 40px;
  font-family: var(--primary-font-family);
  color: var(--primary-dark-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: var(--primary-link-background-color);
}

.primary-link::before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid var(--primary-link-inner-border-color);
}

.primary-link:hover {
  background-color: var(--primary-link-background-color-hover);
}

.secondary-link {
  width: 270px;
  height: 40px;
  font-family: var(--primary-font-family);
  color: var(--primary-dark-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid var(--secondary-link-border-color);
}

.secondary-link::before {
  content: "";
  position: absolute;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  border: 2px solid var(--secondary-link-border-color);
}

.secondary-link:hover {
  border: 2px solid var(--secondary-link-border-color-hover);
}

.secondary-link:hover::before {
  border: 2px solid var(--secondary-link-border-color-hover);
}

.primary-link,
.secondary-link:nth-child(2) {
  margin-right: 25px;
}

@media screen and (max-width: 1279px) {
  .primary-link,
  .secondary-link {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.bordered-image {
  border: 2px solid var(--image-border-light-color);
  padding: 5px;
  max-width: 100%;
}

.double-bordered-image {
  position: relative;
  /* z-index: 1 is used here to display image above second border which is applied in before pseudo-element. */
  z-index: 1;
  border: 2px solid var(--image-border-light-color);
  padding: 10px;
  margin-bottom: 70px;
  min-width: 400px;
  margin-right: 40px;
  height: fit-content;
}

.double-bordered-image::before {
  content: "";
  position: absolute;
  top: var(--double-bordered-image-top-offset);
  right: var(--double-bordered-image-right-offset);
  border: 2px solid var(--image-border-light-color);
  height: 100%;
  width: 100%;
  /* z-index: -1 is used here to display border below the image. */
  z-index: -1;
}

.double-bordered-image img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .double-bordered-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .double-bordered-image::before {
    right: -15px;
  }
}

@media screen and (max-width: 425px) {
  .double-bordered-image {
    padding: 0;
    border: none;
  }

  .double-bordered-image::before {
    display: none;
  }
}

.list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  max-width: 550px;
  padding: 0;
}

.list__item {
  display: flex;
}

.header-ornament {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-600);
  color: var(--primary-dark-color);
  margin-top: 40px;
  margin-bottom: 30px;
}

.header-ornament::before {
  position: relative;
  top: var( --header-ornament-top-offset);
  left: var( --header-ornament-left-offset);
  content: url("/static/images/HeaderOrnamentLeft.svg");
}

.header-ornament::after {
  position: relative;
  top: var( --header-ornament-top-offset);
  right: var( --header-ornament-right-offset);
  content: url("/static/images/HeaderOrnamentRight.svg");
}

@media screen and (max-width: 768px) {
  .header-ornament::before {
    content: url("/static/images/HeaderOrnamentLeftSmall.svg");
  }

  .header-ornament::after {
    content: url("/static/images/HeaderOrnamentRightSmall.svg");
  }
}

.two-columns-content {
  align-self: center;
  column-count: 2;
  column-gap: 45px;
  margin-bottom: 30px;
}

.content-paragraph {
  margin-bottom: 18px;
}

.simple-block {
  display: flex;
}

.align-items-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .content-paragraph > img {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .simple-block {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-columns-content {
    display: flex;
    flex-wrap: wrap;
    column-count: 1;
  }
}

@media screen and (max-width: 425px) {
  .content-paragraph {
    display: flex;
    flex-wrap: wrap;
  }
}

.bordered-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid var(--primary-light-color);
  border-top: none;
  padding: 0;
}

.block-title {
  position: relative;
  top: -15px;
  font-family: var(--primary-font-family);
  font-size: var(--font-size-600);
  color: var(--primary-dark-color);
  width: 100%;
  text-align: center;
}

.darkened-background {
  background-color: var(--secondary-background-color);
}

@media screen and (max-width: 1023px) {
  .block-title {
    word-wrap: break-word;
  }

  .darkened-background {
    padding-inline: 20px;
  }
}


.posts-page {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 45px;
  color: var(--content-text-color);
  font-family: var(--secondary-font-family);
  font-size: var(--font-size-400);
  line-height: 22px;
}

.posts-page > * {
  padding: 0 45px;
}

.posts-page__corner-label {
  position: absolute;
  inset: 0 0 auto auto;
  padding: 0;
}

.golf-event {
  display: grid;
  grid-template-areas:
    "header       header"
    "description  description"
    "info         info"
    "link         link";
  row-gap: 15px;
}

.golf-event__header {
  grid-area: header;
}

.golf-event__description {
  grid-area: description;
}

.golf-event__date {
  grid-area: date;
}

.golf-event__place {
  grid-area: place;
}

.golf-event__link {
  grid-area: link;
}

.golf-event__info {
  grid-area: info;
}

.golf-event__info th,
.golf-event__info td {
  text-align: left;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .post-page__photos {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
}

.event__modified-scramble-title::after {
  position: absolute;
  content: url("/static/images/HeaderOrnamentRightSmall.svg");
  right: var(--modified-scramble-title-right-offset);
  top: var(--modified-scramble-title-top-offset);
}

.event__modified-scramble-title::before {
  position: absolute;
  content: url("/static/images/HeaderOrnamentLeftSmall.svg");
  left: var(--modified-scramble-title-right-offset);
  top: var(--modified-scramble-title-top-offset);
}

.event__contacts {
  display: flex;
  gap: 45px;
  margin-bottom: 20px;
}

.event__buttons {
  display: flex;
  flex-direction: column;
}

.event__button {
  margin-top: 10px;
}

.event__rich-saul {
  max-width: 300px;
}

.event__committee-company {
  color: var(--tertiary-light-color);
}

.committee {
  width: 100%;
  display: grid;
  justify-content: space-around;
  grid-template-areas:
    "header-tournament  header-sponsor"
    "co-chairs-1        co-chairs-2"
    "tournament         members";
}

.committee__column-header {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-500);
  margin-bottom: 25px;
}

.committee__header-tournament {
  grid-area: header-tournament;
}

.committee__header-sponsor {
  grid-area: header-sponsor;
}

.committee__co-chairs-1 {
  grid-area: co-chairs-1;
}

.committee__co-chairs-2 {
  grid-area: co-chairs-2;
}

.committee__tournament {
  grid-area: tournament;
}

.committee__members {
  grid-area: members;
}

.committee__group-header {
  font-family: var(--primary-bold-font-family);
  font-weight: 700;
  margin-bottom: 10px;
}

.committee__group-list {
  padding: 0;
  list-style: none;
  margin-bottom: 25px;
}

.committee__group-list-item {
  line-height: 22px;
}

@media screen and (max-width: 1400px) {
  .event__modified-scramble-title {
    width: auto;
    padding-inline: 65px;
  }
}

@media screen and (max-width: 1023px) {
  .event__rich-saul {
    max-width: max-content;
  }

  .event__modified-scramble-title {
    width: 100%;
    padding-inline: 0;
  }

  .event__contacts {
    flex-direction: column;
  }

  .event__modified-scramble {
    margin-top: 40px;
    min-width: 100%;
  }

  .event__buttons {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {
  .event__contacts {
    flex-wrap: wrap;
    justify-content: center;
  }

  .event__modified-scramble {
    border: none;
  }

  .event__buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .event__buttons > .event__button {
    margin: 0;
    margin-top: 10px;
  }
}

.auction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 45px;
  min-height: 670px;
  background-image: var(--background-linear-gradient),
    url("../images/GolfBackground.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.auction__header {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-700);
  color: var(--primary-dark-color);
}

.auction__coming-soon {
  display: flex;
  justify-content: space-between;
  width: 150px;
  font-family: var(--secondary-font-family);
  font-size: var(--font-size-400);
  color: var(--tertiary-light-color);
  margin-top: 40px;
}


@media screen and (max-width: 1279px) {
  .auction {
    min-height: 400px;
  }
}

.contacts-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px;
  font-family: var(--secondary-font-family);
  font-size: var(--font-size-400);
  color: var(--content-text-color);
}

.contacts-page__header {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-700);
  color: var(--primary-dark-color);
}

.contacts-page__bordered-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid var(--primary-light-color);
  border-top: none;
  min-width: 690px;
  padding-bottom: 25px;
  margin-top: 50px;
}

.contacts-page__block-title {
  position: relative;
  top: -15px;
  font-family: var(--primary-font-family);
  font-size: var(--font-size-600);
  color: var(--primary-dark-color);
  width: 100%;
  text-align: center;
}

.contacts-page__left-top-border {
  position: absolute;
  left: -1px;
  top: -4px;
}

.contacts-page__right-top-border {
  position: absolute;
  right: -1px;
  top: -4px;
}

.contacts-info {
  display: grid;
  column-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.contacts-info > * {
  margin: 10px;
}

.contacts-info__item:nth-child(odd) {
  grid-column: 1;
  grid-row: auto;
  text-align: right;
}

.contacts-info__item:nth-child(even) {
  grid-column: 2;
  grid-row: auto;
  text-align: left;
}

.contacts-info_reservation {
  grid-template-columns: 1fr 1fr 2fr;
}

.contacts-info_reservation .contacts-info__item:nth-child(even) {
  font-family: var(--primary-bold-font-family);
  font-weight: 700;
  grid-column: 2;
  text-align: right;
}

.contacts-info_reservation .contacts-info__item:nth-child(odd) {
  grid-column: 3;
  text-align: left;
}

.contacts-info__name {
  grid-column: 1;
  grid-row: auto;
}

@media screen and (max-width: 1279px) {
  .contacts-page__bordered-block {
    min-width: 370px;
  }

  .contacts-page__left-top-border {
    content: url('/static/images/HeaderOrnamentLeftSmall.svg');
  }

  .contacts-page__right-top-border {
    content: url('/static/images/HeaderOrnamentRightSmall.svg');
  }
}

.sponsorships {
  font-family: var(--secondary-font-family);
  font-size: var(--font-size-400);
  color: var(--content-text-color);
  display: flex;
  flex-direction: column;
  align-items: center;

  --accordion-border-color: #e3cf87;
  --leading-dots-color: #d4d4d4;
}

.sponsorships > * {
  padding: 45px;
}

.sponsorships__header {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-700);
  color: var(--primary-dark-color);
}

.sponsorships__links-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin-top: 10px;
}

.sponsorships__links-block .primary-link,
.sponsorships__links-block .secondary-link {
  margin-right: 0;
}
.sponsorships__accordions {
  width: 100%;
}

.sponsorships__sponsor {
  width: 100%;
}

.sponsorships__sponsor::marker {
  display: none;
}

.sponsorships__sponsor[open] {
  border-bottom: solid 1px var(--accordion-border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sponsorships__sponsor .sponsorships__sponsor-title::after {
  content: url("/static/images/ArrowUp.svg");
  position: absolute;
  right: 0;
}

.sponsorships__sponsor[open] .sponsorships__sponsor-title::after {
  content: url("/static/images/ArrowDown.svg");
}

.sponsorships__sponsor .sponsorships__sponsor-title {
  border-bottom: solid 1px var(--accordion-border-color);
  padding-bottom: 10px;
}

.sponsorships__sponsor[open] .sponsorships__sponsor-title {
  border-bottom: none;
}

.sponsorships__sponsor-title {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}

.sponsorships__sponsor-title > * {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-500);
}

.sponsorships__sponsor-title-sum {
  margin-right: 60px;
}

.sponsorships__hospitality {
  margin-top: 30px;
  column-count: 2;
  width: 100%;
}

.sponsorships__hospitality-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  margin-bottom: 15px;
}

.sponsorships__hospitality-item-name {
  grid-column: 1;
  font-family: var(--primary-bold-font-family);
  font-weight: 700;
}

.sponsorships__hospitality-item-sum {
  grid-column: 3;
}

.sponsorships__hospitality-item-leading-dots {
  grid-column: 2;
  border-bottom: 1px dashed var(--leading-dots-color);
  margin: 0 5px 3px 5px;
  position: relative;
}

.sponsorships__taxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--secondary-background-color);
  padding-top: 0;
}

.sponsorships__taxes-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

.sponsorships__taxes-info-item {
  margin-bottom: 10px;
}

.sponsorships__taxes-info-item:nth-child(odd) {
  grid-column: 1;
  text-align: end;
  font-family: var(--primary-bold-font-family);
  font-weight: 700;
}

.sponsorships__taxes-info-item:nth-child(even) {
  grid-column: 2;
  text-align: start;
}

@media screen and (max-width: 1024px) {
  .sponsorships__links-block {
    flex-direction: column;
    align-items: center;
  }

  .sponsorships__sponsor-title-sum {
    margin-right: 20px;
    white-space: nowrap;
  }

  .sponsorships__hospitality {
    column-count: 1;
  }
}

@media screen and (max-width: 768px) {
  .sponsorships > * {
    padding-inline: 20px;
  }
}


.page {
  display: grid;
  margin: 0 auto;
  grid-template-columns: 0.5fr 1.5fr 0.5fr;
  grid-template-areas:
    "header   header       header"
    "left-bar page-content right-bar"
    "footer   footer       footer";
  justify-items: center;
  column-gap: 10px;
}

.page__header {
  grid-area: header;
  width: 100%;
  margin-bottom: 20px;
}

.page__left-bar {
  justify-self: end;
  grid-area: left-bar;
}

.page__content {
  min-width: 760px;
  max-width: 960px;
  grid-area: page-content;
  display: flex;
  height: fit-content;
  width: 100%;
  flex-direction: column;
  background-color: var(--primary-background-color);
}

.page__right-bar {
  justify-self: start;
  grid-area: right-bar;
}

.page__footer {
  margin-top: 20px;
  grid-area: footer;
  width: 100%;
}

.page__right-bar-mobile,
.page__left-bar-mobile {
  display: none;
}

@media screen and (max-width: 1279px) {
  .page {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    min-width: auto;
    max-width: 768px;
    row-gap: 0;
  }

  .page__header {
    padding: 0;
  }

  .page__right-bar,
  .page__left-bar {
    display: none;
  }

  .page__right-bar-mobile,
  .page__left-bar-mobile {
    display: block;
    max-width: 768px;
    background-color: var(--primary-background-color);
  }

  .page__footer {
    width: auto;
    margin: 0;
    max-width: 768px;
  }
}

@media screen and (max-width: 768px) {
  .page {
    max-width: 768px;
  }

  .page__content {
    margin-top: 100px;
  }

  .page__header,
  .page__left-bar-mobile,
  .page__right-bar-mobile,
  .page__footer {
    max-width: auto;
  }
}

@media screen and (max-width: 425px) {
  .page {
    max-width: 425px;
  }
}


.header {
  display: grid;
  grid-template-columns:1fr;
  grid-template-areas:
    "header"
    "menu";
  width: 100%;
}

.header__logo {
  grid-area: header;
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.5fr;
  grid-template-areas:
    "logo text text";
  margin-top: 25px;
  margin-bottom: 25px;
}

.logo {
  /* display: flex; */
  align-items: center;
}

.logo__href {
  grid-area: logo;
  justify-self: end;
}

.logo__img {
  height: 125px;
  margin-right: 20px;
}

.logo__heading {
  grid-area: text;
  justify-self: start;
  font-size: var(--font-size-600);
  font-family: var(--primary-font-family);
  color: var(--primary-light-color);
}

.header__menu {
  margin: 0 auto;
}

.menu {
  grid-area: menu;
  justify-self: center;
  min-width: 750px;
}

.menu__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
}

.menu__list-item {
  position: relative;
  list-style: none;
}

.menu__list-item_active > .menu__list-link {
  color: var(--primary-light-color);
}

.menu__list-item_active::before {
  content: url("/static/images/MenuLeftSelect.svg");
  position: absolute;
  left: -20px;
}

.menu__list-item_active::after {
  content: url("/static/images/MenuRightSelect.svg");
  position: absolute;
  right: -20px;
}

.menu__list-link {
  text-decoration: none;
  font-family: var(--primary-font-family);
  font-size: var(--font-size-400);
  color: var(--secondary-light-color);
}

@media screen and (max-width: 768px) {
  .header {
    /* Header must be above page. */
    z-index: 3;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--footer-background-color);
  }

  .logo__heading {
    display: none;
  }

  .logo__img {
    max-height: 70px;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .header__logo {
    padding-inline: 30px;
  }

  .menu {
    min-width: auto;
  }

  .menu__list {
    gap: 10px;
    display: none;
    position: relative;
    padding-bottom: 25px;
  }

  .menu__list-item {
    border-bottom: 1px solid var(--secondary-light-color);
  }

  .menu__list-item_active {
    border-color: var(--primary-light-color);
  }
}

.column {
  border: 1px solid var(--primary-light-color);
  border-top: none;
  width: 240px;
  text-align: center;
}

.column__title {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-500);
  line-height: 20px;
  color: var(--primary-light-color);
  position: relative;
  top: -10px;
}

.column__title::before {
  content: url("/static/images/SmallBorderLeft.svg");
  position: absolute;
  left: -1px;
  top: -1px;
}

.column__title::after {
  content: url("/static/images/SmallBorderRight.svg");
  position: absolute;
  right: -1px;
  top: -1px;
}

.column__thank-you {
  font-family: var(--secondary-font-family);
  font-size: var(--font-size-300);
  line-height: 17px;
  color: var(--secondary-light-color);
  max-width: 160px;
  margin: auto;
}

.column__sponsor-header {
  font-family: var(--secondary-bold-font-family);
  font-size: var(--font-size-300);
  line-height: 20px;
  color: var(--primary-light-color);
  margin-top: 20px;
}

.column__sponsors-list {
  padding: 0;
  list-style: none;
}

.column__sponsor-image {
  width: 190px;
}

.column > .tns-outer {
  margin-block: 30px;
}

.tns-inner > .tns-horizontal.tns-subpixel > .tns-item {
  display: flex;
  justify-content: center;
}

.column__sponsors-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}

.column__sponsor-name {
  font-family: var(--secondary-bold-font-family);
  font-size: var(--font-size-300);
  line-height: 15px;
  color: var(--secondary-light-color);
  max-width: 150px;
  display: contents;
}

.column__sponsor-name-block {
  padding: 15px 0;
  width: 190px;
  background-color: var(--sponsor-right-column-box-color);
  border: 2px solid var(--primary-background-color);
}

.column__divider-star {
  margin-bottom: 10px;
}

.column__sponsors-list_mobile {
  display: none;
}

@media screen and (max-width: 1279px) {
  .column {
    text-align: center;
    width: auto;
    border: none;
    margin-bottom: 50px;
  }

  .column__title .line-break {
    display: none;
  }

  .column__title {
    font-family: var(--primary-font-family);
    font-size: var(--font-size-600);
    color: var(--primary-dark-color);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .column__title::before {
    position: relative;
    left: -35px;
  }

  .column__title::after {
    position: relative;
    right: -35px;
  }

  .column__thank-you {
    font-family: var(--secondary-font-family);
    color: var(--content-text-color);
    margin: auto;
    max-width: none;
  }

  .column__sponsor-header {
    margin-bottom: 20px;
  }

  .column__sponsors-list_mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .column__sponsors-list_column {
    flex-wrap: wrap;
    column-gap: 100px;
  }

  .column__corporate-sponsors-list {
    flex-wrap: nowrap;
  }

  .column {
    margin-inline: 10px;
  }
}

@media screen and (max-width: 768px) {
  .column {
    align-self: center;
    margin-block: 30px;
  }
}

@media screen and (max-width: 425px) {
  .column__title::before,
  .column__title::after {
    display: none;
  }
}

.sponsor-card {
  color: var(--secondary-light-color);
}

.sponsor-card__divider-star {
  margin: 11px;
}

.sponsor-card__title {
  font-family: var(--secondary-bold-font-family);
  font-size: var(--font-size-300);
  line-height: 14px;
}
.sponsor-card__sum,
.sponsor-card__name {
  font-family: var(--secondary-font-family);
  line-height: 25px;
}

.sponsor-card__sum {
  font-size: var(--font-size-400);
}

.sponsor-card__name {
  font-size: var(--font-size-200);
}

.sponsor-card__name_available {
  color: var(--primary-light-color)
}

.sponsor-card-list {
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1279px) {
  .sponsor-card-list {
    display: flex;
  }

  .sponsor-card {
    color: var(--content-text-color);
  }

  .sponsor-card__title {
    font-family: var(--secondary-bold-font-family);
  }

  .sponsor-card__sum {
    font-family: var(--secondary-font-family);
  }

  .sponsor-card__name {
    font-family: var(--secondary-font-family);
  }

  .sponsor-card__name_available {
    color: var(--content-text-color);
  }

  .sponsor-card-pagination__item {
    height: 12px;
    width: 12px;
    border: none;
    background-color: var(--dot-color);
    border-radius: 50%;
    display: inline-block;
    margin-inline: 5px;
  }

  .tns-nav-active {
    background-color: var(--dot-active-color);
  }
}

.footer {
  background-color: var(--footer-background-color);
  background-image: url(../../images/footer/bg_footer.png);
  background-repeat: no-repeat;
  background-position: center 10px;
  display: flex;
  flex-direction: column;
}

.footer {
  min-width: 100%;
  align-items: center;

}

.footer-navbar {
  margin-top: 45px;
}

.footer-navbar, .footer__logos {
  min-width: 960px;
}

.footer-navbar__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
}

.footer-navbar__link {
  font-family: var(--primary-font-family);
  font-size: var(--font-size-300);
  text-decoration: none;
  color: var(--footer-text-color);
}

.footer__logos {
  display: flex;
  justify-content: space-between;
  padding: 30px 45px;
}

.footer__logos-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
}

.footer__childhelp-logo {
  max-width: 110px;
  max-height: 45px;
}

.footer__love-logo {
  max-width: 110px;
  max-height: 30px;
}

.footer__copyright {
  display: flex;
  align-items: center;
}

.footer__copyright-text {
  font-family: var(--secondary-font-family);
  font-size: var(--font-size-200);
  margin-right: 5px;
  color: var(--footer-text-color);
}

.footer__saritasa-logo {
  max-width: 80px;
  max-height: 20px;
}

@media screen and (max-width: 1279px) {
  .footer {
    background-image: none;
  }
  .footer-navbar, .footer__logos {
    min-width: 100%;
  }
  .footer-navbar {
    margin-top: 15px;
  }

  .footer-navbar__list {
    align-items: center;
  }

  .footer-navbar__list-item {
    margin-bottom: 10px;
  }

  .footer__logos-group {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 425px) {
  .footer-navbar {
    margin-top: 15px;
  }

  .footer-navbar__list {
    align-items: center;
    flex-direction: column;
  }

  .footer-navbar__list-item {
    margin-bottom: 10px;
  }

  .footer__logos-group {
    margin-bottom: 15px;
  }
}


/* Styles taken from */
/* https://github.com/jonsuh/hamburgers/blob/master/dist/hamburgers.css */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--3dx-r.hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

