@charset "UTF-8";
@font-face {
  font-family: "Interstate";
  src: url("../fonts/InterstateBlack.otf");
  font-weight: 800;
}
@font-face {
  font-family: "Interstate";
  src: url("../fonts/InterstateBold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "Interstate";
  src: url("../fonts/InterstateRegular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Interstate";
  src: url("../fonts/InterstateLight.otf");
  font-weight: 300;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

img {
  display: block;
  width: 100%;
}

button {
  outline: none;
  cursor: pointer;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-weight: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*** 
====================================================================
Global Settings
====================================================================
 ***/
body {
  font-family: "Interstate", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 15;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  color: transparent;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.slick-prev:hover,
.slick-next:hover {
  outline: #fff;
  background: #ff8c00;
  color: transparent;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 24px;
  line-height: 1;
  color: #ff8c00;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.slick-prev {
  left: -10px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -10px;
}
.slick-prev:hover:before {
  content: url("../images/arrow-left.svg");
}
.slick-prev:before {
  content: url("../images/arrow-left-orange.svg");
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -10px;
}
[dir=rtl] .slick-next {
  left: -10px;
  right: auto;
}
.slick-next:hover:before {
  content: url("../images/arrow-right.svg");
}
.slick-next:before {
  content: url("../images/arrow-right-orange.svg");
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Typography */
h2,
h4 {
  color: #000;
  font-weight: 800;
  line-height: 1.25;
}

h2 {
  font-size: 36px;
}
h2 span {
  font-size: inherit;
  color: #ff8c00;
}
h2.for-viral span {
  color: #fff;
}

h4 {
  font-size: 28px;
}

p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #717171;
}
p.for-viral {
  color: #fff;
}

.auto__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 60px;
}

.button {
  padding: 16px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 100px;
  color: #fff;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.button--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff8c00;
}
.button--primary svg {
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button--primary:hover {
  color: #ff8c00;
  background-color: #fff;
  outline: 2px solid #ff8c00;
}
.button--primary:hover svg {
  color: #ff8c00;
}
.button--primary svg {
  margin-left: 10px;
}
.button--secondary {
  color: #000;
  background-color: #fff;
  outline: 1px solid #000 !important;
}
.button--uniq {
  padding: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
}
.button--uniq svg {
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button--uniq:hover {
  color: #000;
  background-color: #fff;
  outline: 2px solid #000;
}
.button--uniq:hover svg {
  color: #000;
}
.button--uniq svg {
  margin-left: 10px;
}

.donation-amount {
  display: block;
}
.donation-amount span {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #b6b2b2;
  cursor: pointer;
  background-color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.donation-amount span:hover {
  background-color: whitesmoke;
}
.donation-amount input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.donation-amount input:checked ~ span {
  color: #ff8c00;
  outline: 2px solid #ff8c00;
}

.custom-radio-buttons-container {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-radio-button {
  margin-right: 50px;
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.25;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-radio-button:last-child {
  margin: 0;
}
.custom-radio-button:hover input ~ span {
  background-color: whitesmoke;
}
.custom-radio-button input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-radio-button input:checked ~ span::after {
  display: block;
}
.custom-radio-button span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.custom-radio-button span::after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background-color: #ff8c00;
}

.custom-checkboxes-container {
  margin-bottom: 15px;
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  color: #373737;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox:hover span {
  background-color: #f5f5f5;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox input:checked ~ span {
  background-color: #ff8c00;
}
.custom-checkbox input:checked ~ span::after {
  display: block;
}
.custom-checkbox span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.custom-checkbox span::after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The container must be positioned relative: */
.custom-select {
  margin-bottom: 20px;
  position: relative;
  font-size: 12px;
  font-weight: 300;
  color: #373737;
}
.custom-select select {
  display: none;
}

.select-selected {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Interstate", sans-serif;
  font-size: 16px;
  font-weight: 300;
  height: 30px;
  background-color: #fff;
}
.select-selected::after {
  position: absolute;
  content: "";
  bottom: 16px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}
.select-selected.select-arrow-active::after {
  border-color: transparent transparent #000 transparent;
  bottom: 20px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #373737;
  font-family: "Interstate", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: #ffe3c2;
}

.same-as-selected {
  background-color: #fac17c !important;
}

.card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px;
}
.card.slick-slide:hover .card__inner {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0px 0px 20px rgba(255, 140, 0, 0.6);
          box-shadow: 0px 0px 20px rgba(255, 140, 0, 0.6);
}
.card__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.card__image {
  margin-bottom: 10px;
}
.card__content {
  position: relative;
}
.card__content-photo {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  outline: 2px solid #fb6d3a;
}
.card__content-photo img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.card__content-photo span {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 24px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fb6d3a;
  font-family: "Interstate", sans-serif;
  font-weight: 700;
  font-size: 6px;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #fff;
  border-radius: 2px;
}
.card__content-title {
  padding-left: 42px;
  margin-bottom: 3px;
  font-size: 11px;
  line-height: 13px;
  color: #000;
}
.card__content-text {
  padding-left: 42px;
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  color: #989898;
}

.footer {
  padding: 50px 0;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo {
  margin-top: -50px;
  width: 110px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__links a {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.footer__links a:first-child {
  margin-right: 40px;
}
.footer__links a:hover {
  opacity: 0.8;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 10px 0;
  background: #ffffff;
  -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__button {
  padding: 10px;
  width: 24px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.header__button:hover {
  opacity: 0.8;
}

.nav {
  min-width: 60%;
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav__link {
  display: block;
  padding: 10px;
  margin-right: 10px;
  font-family: "Interstate", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #373737;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.nav__link:hover {
  color: #000;
}
.nav__link:last-child {
  margin: 0;
}

.burger {
  display: none;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.burger span {
  width: calc(100% - 0.4rem);
  height: 4px;
  background-color: #ff8c00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger::before {
  top: 10%;
  width: calc(100% - 0.4rem);
  height: 4px;
  background-color: #ff8c00;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.burger::after {
  bottom: 10%;
  width: calc(100% - 0.4rem);
  height: 4px;
  background-color: #ff8c00;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.burger.active span {
  display: none;
}
.burger.active::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger.active::after {
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
  transform: translate(-50%, 50%) rotate(-45deg);
}

.top {
  position: relative;
}
.top__links {
  background-color: #fff;
}
.top__links-inner {
  padding: 8px 0;
  text-align: right;
}
.top__links-inner a {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #373737;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.top__links-inner a:first-child {
  margin-right: 40px;
}
.top__links-inner a:hover {
  opacity: 0.8;
}
.top__content {
  position: relative;
  background-color: #ff8c00;
}
.top__content-bg {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__content-bg span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.top__content-bg span:first-child {
  left: 25%;
  width: 40%;
  padding-bottom: 50%;
  background-color: #ef8435;
}
.top__content-bg span:nth-child(2) {
  left: 10%;
  width: 20%;
  padding-bottom: 50%;
  background-color: #d15a3d;
}
.top__content-bg span:last-child {
  left: 0;
  width: 20%;
  padding-bottom: 50%;
  background-color: #c3503f;
}
.top__content-inner {
  position: relative;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__content-inner span {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.top .logo {
  position: absolute;
  top: 100%;
  z-index: 5;
  width: 110px;
}

.intro {
  position: relative;
  min-height: calc(100vh - 95px);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro video::-webkit-media-controls-panel {
  display: -webkit-box !important;
  display: flex !important;
  opacity: 1 !important;
}
.intro__volume {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 10;
  width: 50px;
}
.intro__inner {
  height: calc(100vh - 95px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro__content {
  position: relative;
  width: calc(50% - 50px);
}
.intro__content h2 {
  margin-bottom: 15px;
  background: linear-gradient(98.66deg, #b64e42 -2.94%, #b64e42 49.7%, #ff8c00 49.73%, #ff8c00 130.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro__content p {
  margin-bottom: 25px;
  color: #fff;
}
.intro__content button {
  position: relative;
  z-index: 5;
}

.swiper {
  overflow: hidden;
  margin: unset !important;
  width: calc(50% - 150px);
  height: calc(100% - 80px);
}
.swiper.fixed {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.1);
}
.swiper.fixed .swiper-wrapper {
  width: calc(50% - 150px) !important;
}
.swiper-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-slide-inner {
  position: relative;
  width: 410px;
  height: 500px;
}
.swiper-slide .card {
  padding: 0;
  width: 200px;
}
.swiper-slide:nth-child(2) .card {
  position: absolute;
}
.swiper-slide:nth-child(2) .card:first-child {
  width: 300px;
  top: 0;
  left: 0;
}
.swiper-slide:nth-child(2) .card:nth-child(2) {
  width: 240px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.swiper-slide:nth-child(2) .card:last-child {
  width: 200px;
  top: 75px;
  right: 0;
}

.donation {
  padding: 80px;
  height: 480px;
}
.donation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donation__content {
  width: 35%;
}
.donation__content h2 {
  margin-bottom: 10px;
}
.donation__content p {
  margin-bottom: 10px;
}
.donation__content-span {
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Interstate", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.donation__content .button--primary {
  margin-bottom: 10px;
}
.donation__form {
  position: relative;
  width: 60%;
}
.donation__form input:focus {
  outline: 2px solid #000;
}
.donation__form-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 430px;
  min-height: 600px;
  padding: 30px;
  background: #feead0;
  -webkit-box-shadow: 0px 4.09524px 45.0476px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4.09524px 45.0476px rgba(0, 0, 0, 0.15);
  border-radius: 40px 0px 0px 0px;
}
.donation__form-body {
  display: none;
  margin-bottom: 30px;
}
.donation__form-body[data-step="1"] {
  margin-bottom: 100px;
}
.donation__form-body.active {
  display: block;
}
.donation__form-inputs {
  margin-bottom: 15px;
}
.donation__form-inputs input {
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 40px;
}
.donation__form-inputs input:last-child {
  margin-bottom: 0;
}
.donation__form-link {
  color: #373737;
  font-size: 12px;
  font-weight: 300;
}
.donation__form-link a {
  color: #ff8c00;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.donation__form-link a:hover {
  opacity: 0.8;
}
.donation__form h4 {
  margin-bottom: 15px;
}
.donation__form-block {
  margin-bottom: 15px;
}
.donation__form-block:last-child {
  margin-bottom: 0;
}
.donation__form-block:last-child .donation__form-block-row {
  margin-bottom: 15px;
}
.donation__form-block-title {
  font-family: "Interstate", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 24px;
  color: #000;
}
.donation__form-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.donation__form-block-row input[type=email] {
  margin-right: 10px;
  width: calc(100% - 50px);
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 12px;
}
.donation__form-block-row-item {
  position: relative;
  margin-right: 5px;
  position: relative;
}
.donation__form-block-row-item::before {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.donation__form-block-row-item.active::before {
  display: block;
}
.donation__form-block-row-item input[type=number] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 70px;
  height: 40px;
  font-size: 12px;
}
.donation__form-block-row-item input[type=number]::-webkit-input-placeholder {
  color: #b6b2b2;
}
.donation__form-block-row-item input[type=number]::-moz-placeholder {
  color: #b6b2b2;
}
.donation__form-block-row-item input[type=number]:-ms-input-placeholder {
  color: #b6b2b2;
}
.donation__form-block-row-item input[type=number]::-ms-input-placeholder {
  color: #b6b2b2;
}
.donation__form-block-row-item input[type=number]::placeholder {
  color: #b6b2b2;
}
.donation__form-block-row-item-popUp {
  padding: 10px;
  background-color: #fff;
}
.donation__form-block-popUp {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  padding: 10px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  background-color: #fff;
}
.donation__form-block-popUp.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donation__form-block button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  outline: 1px solid #000;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.donation__form-block button:hover {
  background-color: #ff8c00;
}
.donation__form-block button:hover div {
  background-color: #fff;
}
.donation__form-block button div {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #ff8c00;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.donation__form-block button div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 2.5px;
  height: 15px;
  border-radius: 2.5px;
  background-color: #000;
}
.donation__form-block button div::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 2.5px;
  width: 15px;
  border-radius: 2.5px;
  background-color: #000;
}
.donation__form #prev-btn {
  display: block;
  margin-inline: auto;
  margin-bottom: 30px;
  background-color: transparent;
  color: #ff8c00;
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.donation__form #prev-btn:hover {
  opacity: 0.8;
}
.donation__form #next-btn {
  margin-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.donation__form-steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donation__form-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #000;
}
.donation__form-steps div {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 24px;
}
.donation__form-steps div span {
  display: none;
  position: relative;
  width: 60%;
  height: 60%;
  background-color: green;
  border-radius: 50%;
}
.donation__form-steps div span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.donation__form-steps div.active {
  color: #fff;
  background-color: #000;
}
.donation__form-steps div.complete {
  background-color: #fff;
  font-size: 0;
}
.donation__form-steps div.complete span {
  display: block;
}
.donation__form-textarea {
  margin-bottom: 20px;
  display: block;
  color: #373737;
  font-size: 12px;
  font-weight: 300;
}
.donation__form-textarea textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
  resize: none;
  min-height: 150px;
}

.about {
  background-image: url("../images/parallax-image.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.about__inner {
  min-height: 75vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__content {
  max-width: 500px;
  text-shadow: 0px 0px 2px #fff;
}
.about__content h2 {
  margin-bottom: 15px;
}
.about__content p {
  color: #000;
  margin-bottom: 25px;
}

.testimonials {
  padding: 80px 0;
}
.testimonials__top {
  margin-inline: auto;
  max-width: 700px;
  text-align: center;
}
.testimonials__top h2 {
  margin-bottom: 10px;
}
.testimonials .slick-list {
  padding: 50px 0;
}

.results {
  padding: 80px 0;
}
.results h2 {
  margin-bottom: 30px;
  text-align: center;
}
.results__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.results .card:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.results .card:first-child .card__image {
  height: calc(100% - 50px);
}
.results .card:first-child .card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.viral {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50vh;
  background-color: #ff8c00;
}
.viral h2 {
  margin-bottom: 10px;
}
.viral__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.viral__block {
  width: calc(50% - 30px);
}
.viral__block:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.viral__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 10px);
  padding: 10px;
  background: #b96600;
  -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #fff;
}
.viral__item-image {
  margin-bottom: 5px;
  width: 36px;
  height: 36px;
  background-color: #ff8c00;
  border-radius: 50px;
}
.viral__item-title {
  font-size: 10px;
  line-height: 11px;
}
.viral__item-text {
  font-weight: 300;
  font-size: 8px;
  line-height: 10px;
}

@media (max-width: 1024px) {
  .swiper {
    width: calc(50% - 50px);
  }
  .swiper.fixed .swiper-wrapper {
    width: calc(50% - 50px) !important;
  }
  .swiper-slide-inner {
    width: 360px;
    height: 450px;
  }
  .swiper-slide .card {
    width: 180px;
  }
  .swiper-slide:nth-child(2) .card {
    position: absolute;
  }
  .swiper-slide:nth-child(2) .card:first-child {
    width: 280px;
  }
  .swiper-slide:nth-child(2) .card:nth-child(2) {
    width: 220px;
  }
  .swiper-slide:nth-child(2) .card:last-child {
    width: 180px;
  }
  .testimonials {
    padding: 50px 0;
  }
  .results {
    padding: 50px 0;
  }
  .results__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .results .card:first-child {
    grid-column: unset;
    grid-row: unset;
  }
  .results .card:first-child .card__image {
    position: relative;
    padding-bottom: 64%;
    height: unset;
  }
  .results .card:first-child .card__image img {
    position: absolute;
  }
  .viral {
    padding: 50px 0;
  }
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 840px) {
  .top__content-inner span {
    font-size: 14px;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav {
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    height: calc(100% - 61px);
    z-index: 100;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    top: 0;
    right: 0;
    width: 250px;
    padding: 0;
    z-index: 1;
    padding: 30px 20px;
    height: calc(100% - 40px);
    overflow-y: auto;
    background: #f8fbf4;
    border-top: 2px solid #ff8c00;
  }
  .nav__link {
    margin-bottom: 15px;
    padding: 10px;
    display: block;
    margin-right: 0;
    border-radius: 10px;
    color: #fff;
    background-color: #ff8c00;
  }
  .nav__link:hover {
    color: #373737;
    outline: 2px solid #ff8c00;
    background-color: whitesmoke;
  }
  .intro__volume {
    display: none;
  }
  .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .intro__content {
    margin-bottom: 80px;
    width: 100%;
    max-width: 540px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .swiper {
    width: 100%;
    height: unset;
  }
  .swiper-slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .swiper-slide-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 410px;
    height: 500px;
  }
  .swiper-slide .card {
    padding: 0;
    width: 200px;
  }
  .swiper-slide:nth-child(2) .card {
    position: absolute;
  }
  .swiper-slide:nth-child(2) .card:first-child {
    width: 300px;
    top: 0;
    left: 0;
  }
  .swiper-slide:nth-child(2) .card:nth-child(2) {
    width: 240px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .swiper-slide:nth-child(2) .card:last-child {
    width: 200px;
    top: 75px;
    right: 0;
  }
  .viral__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .viral__block {
    margin-inline: auto;
    width: 100%;
    max-width: 640px;
  }
  .viral__block:first-child {
    margin-bottom: 30px;
    text-align: center;
  }
  .about__inner {
    min-height: 60vh;
  }
  .about__content {
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .donation {
    scroll-margin-top: 80px;
    padding: 50px 0;
    height: unset;
  }
  .donation__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donation__content {
    margin-inline: auto;
    margin-bottom: 50px;
    width: 100%;
    max-width: 540px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .donation__content h2 {
    margin-bottom: 15px;
  }
  .donation__content-span {
    margin-bottom: 20px;
  }
  .donation__form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .donation__form-inner {
    padding: 30px 20px;
    min-height: unset;
    position: unset;
    border-radius: 0;
  }
  .auto__container {
    padding: 0 30px;
  }
}
@media (max-width: 700px) {
  .testimonials__row {
    margin-inline: auto;
    max-width: 540px;
  }
  .testimonials .slick-list {
    padding: 30px 0;
  }
  .button {
    padding: 10px 16px;
    font-size: 14px;
  }
  .button--uniq {
    min-width: 125px;
    padding: 10px;
  }
  .button--uniq svg {
    margin-left: 5px;
  }
  .results__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .top .logo {
    width: 70px;
  }
  .top__links-inner {
    padding: 5px 0;
  }
  .top__links-inner a {
    font-size: 10px;
    line-height: 12px;
  }
  .top__content-inner button {
    padding: 3px 5px;
    font-size: 12px;
    min-width: unset;
  }
  .top__content-inner button svg {
    width: 16px;
    height: 16px;
  }
  .top__content-inner span {
    font-size: 10px;
  }
  .intro__inner {
    padding: 40px 0;
  }
  .intro__content {
    margin-bottom: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .intro__content h2 {
    margin-bottom: 10px;
    background: linear-gradient(98.66deg, #b64e42 15%, #ff8c00 15%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .intro__content p {
    margin-bottom: 15px;
    max-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .swiper-slide-inner {
    width: 340px;
    height: 430px;
  }
  .swiper-slide .card {
    width: 170px;
  }
  .swiper-slide .card__content-title {
    font-size: 10px;
  }
  .swiper-slide .card__content-text {
    font-size: 9px;
  }
  .swiper-slide:nth-child(2) .card:first-child {
    width: 270px;
  }
  .swiper-slide:nth-child(2) .card:nth-child(2) {
    width: 200px;
  }
  .swiper-slide:nth-child(2) .card:last-child {
    width: 170px;
  }
  .testimonials {
    scroll-margin-top: 80px;
    padding: 30px 0;
  }
  .results {
    scroll-margin-top: 80px;
    padding: 30px 0;
  }
  .results h2 {
    margin-bottom: 15px;
  }
  .results__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .viral {
    padding: 30px 0;
  }
  .about {
    scroll-margin-top: 80px;
  }
  .about__inner {
    min-height: 75vh;
  }
  .footer {
    padding: 30px 0;
  }
  .footer__logo {
    margin-top: -30px;
    width: 80px;
  }
  .footer__links a:first-child {
    margin-right: 20px;
  }
  h2 {
    font-size: 32px;
  }
  .auto__container {
    padding: 0 16px;
  }
}