@-webkit-keyframes shake {
  20%, 60% {
    transform: translateX(-2px);
  }
  40%, 80% {
    transform: translateX(2px);
  }
}
@keyframes shake {
  20%, 60% {
    transform: translateX(-2px);
  }
  40%, 80% {
    transform: translateX(2px);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.main-page .pets .pet-card .name, .button {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
}

.nav-link {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

body {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.donate-page .pick-n-feed .h2, .main-page .pick-n-feed .h2, .main-page .backstage .backstage-text .h2 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
}

.donate-page .pick-n-feed .h2 + p, .main-page .pick-n-feed .subtitle, .main-page .backstage .backstage-text p:nth-child(3), .footer .subscribe .text {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}

.main-page .testimonials .text, .main-page .testimonials .info, .main-page .pets .pet-card .location {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 120%;
}

.donate-page .pick-n-feed .h3, .main-page .testimonials .h3, .main-page .pick-n-feed .h3 {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
}

.nav {
  flex-basis: 100%;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 1.25em 29px;
  color: #ffffff;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
@media (max-width: 1320px) {
  .nav-link {
    padding: 1.25em 24px;
  }
}
@media (max-width: 940px) {
  .nav-link {
    padding: 1.25em 18.5px;
  }
}
@media (max-width: 600px) {
  .nav-link {
    padding: 1.25em 15px;
  }
}
.nav-link:hover {
  cursor: default;
}
.nav-link:hover:not(.active) {
  cursor: pointer;
  transform: scale(1.2);
  transition: transform 0.3s;
}
.nav-link:active, .nav-link.active {
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.header.section-wrapper {
  position: absolute;
  height: 80px;
  width: 100%;
  z-index: 5;
  top: 0;
  background-color: #000000;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media (max-width: 940px) {
  .header.section-wrapper {
    position: fixed;
    height: 34px;
  }
}
.header .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.header.logo {
  padding-top: 2px;
}
.header.logo .text > span {
  text-transform: lowercase;
}
@media (max-width: 940px) {
  .header.logo.container {
    position: relative;
    right: 3%;
    border: none;
  }
  .header.logo .text {
    transform: scale(64%);
  }
  .header.logo .text span {
    display: block;
  }
}
@media (max-width: 940px) {
  .header.logo.container {
    right: 18px;
  }
}
.header .nav {
  margin-left: 34px;
}
@media (max-width: 1320px) {
  .header .nav {
    margin-left: 39px;
  }
}
@media (max-width: 940px) {
  .header .nav {
    display: none;
  }
}
.header .nav-item:last-child {
  flex-grow: 1;
  text-align: end;
}
.header .nav-item:last-child .nav-link {
  padding-right: 1px;
}
.header .burger-menu {
  position: absolute;
  right: 0;
  top: 6px;
  display: none;
}
.header .burger-menu:hover {
  cursor: pointer;
  -webkit-animation: shake 0.5s;
          animation: shake 0.5s;
}
@media (max-width: 940px) {
  .header .burger-menu {
    display: block;
  }
}
.header .burger-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
}
.header .burger-menu-container.visible {
  visibility: visible;
}
.header .burger-menu-container.visible .burger-menu-background {
  opacity: 1;
}
.header .burger-menu-container.visible .burger-menu-nav {
  transform: translateY(0%);
}
.header .burger-menu-background {
  position: fixed;
  z-index: -1;
  top: 0;
  width: inherit;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.3s;
}
.header .burger-menu-nav {
  transition: all 0.3s;
  transform: translateY(-100%);
  background-color: #ffffff;
  height: 329px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.header .burger-menu-nav .burger-menu-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header .burger-menu-nav .burger-menu-close:hover {
  cursor: pointer;
}
.header .burger-menu-nav .logo {
  width: 65.6px;
  height: 41.6px;
  filter: invert(54%) sepia(71%) saturate(590%) hue-rotate(349deg) brightness(101%) contrast(99%);
}
.header .burger-menu-nav .logo.container {
  border: 0.950725px solid #ffffff;
  padding: 0;
}
.header .burger-menu-nav .logo.text {
  position: relative;
  right: 1px;
  padding: 0;
  padding-top: 2px;
  font-size: 15.2116px;
  background-position: bottom 0.3em left 0.4em;
}
.header .burger-menu-nav .nav {
  display: block;
  margin: 23px 2px;
}
.header .burger-menu-nav .nav-list {
  flex-direction: column;
}
.header .burger-menu-nav .nav-item {
  align-self: flex-start;
}
.header .burger-menu-nav .nav-link {
  color: #333b41;
  padding: 7.5px;
  margin-left: -10px;
}
.header .burger-menu-nav .nav-link:hover:not(.active) {
  transform: scale(1.1);
}

.footer {
  color: #ffffff;
}
.footer.section-wrapper {
  background: #111115;
  height: 443px;
}
@media (max-width: 940px) {
  .footer.section-wrapper {
    height: 282px;
  }
}
@media (max-width: 600px) {
  .footer.section-wrapper {
    height: 334px;
  }
}
.footer .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 393px;
}
@media (max-width: 940px) {
  .footer .content-wrapper {
    padding-top: 13px;
    height: 258px;
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .footer .content-wrapper {
    padding-top: 20px;
    height: 294px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.footer .first-part {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  padding-top: 41px;
}
.footer .first-part .button {
  margin-top: 68px;
}
@media (max-width: 940px) {
  .footer .first-part {
    padding-top: 0;
  }
  .footer .first-part .button {
    margin-top: 32px;
  }
}
@media (max-width: 600px) {
  .footer .first-part {
    align-items: center;
    margin-top: -1px;
    margin-left: -1px;
  }
  .footer .first-part .button {
    position: absolute;
    margin-top: 110px;
    margin-left: -3.5px;
    z-index: 1;
  }
}
.footer .second-part {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 940px) {
  .footer .second-part {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .footer .second-part {
    height: 189px;
  }
}
.footer .logo .container {
  border: 0.5px solid #ffffff;
}
@media (max-width: 940px) {
  .footer .logo {
    margin-left: 1px;
  }
}
@media (max-width: 600px) {
  .footer .logo.container {
    width: auto;
    border: none;
  }
  .footer .logo.text {
    background-position: bottom 0.3em right 2.45em;
  }
}
.footer .nav {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translatex(-50%);
}
.footer .nav .nav-link {
  padding-bottom: 1px;
}
@media (max-width: 1320px) {
  .footer .nav {
    left: 48.6%;
  }
}
@media (max-width: 940px) {
  .footer .nav {
    left: 0;
    transform: none;
  }
  .footer .nav .nav-item:first-child .nav-link {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .footer .nav {
    margin: 0 auto;
  }
  .footer .nav .nav-item:first-child .nav-link {
    padding-left: 10px;
  }
  .footer .nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
}
.footer .subscribe {
  position: absolute;
  top: 40px;
  right: 0;
  width: 367px;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1320px) {
  .footer .subscribe {
    right: 32px;
  }
}
@media (max-width: 940px) {
  .footer .subscribe {
    display: none;
  }
}
.footer .subscribe .text {
  margin: 1px 0;
}
.footer .subscribe .email {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 42px;
}
.footer .subscribe .email .input,
.footer .subscribe .email .border {
  box-sizing: border-box;
  width: 228px;
  height: 100%;
  border-radius: 2px;
}
.footer .subscribe .email .input {
  padding: 0 0 0.1em 0.57em;
  background: #000000 padding-box;
  border: 1px solid transparent;
  color: #ffffff;
  z-index: 1;
  outline: none;
}
.footer .subscribe .email .input::-moz-placeholder {
  color: #bdbdbd;
}
.footer .subscribe .email .input:-ms-input-placeholder {
  color: #bdbdbd;
}
.footer .subscribe .email .input::placeholder {
  color: #bdbdbd;
}
.footer .subscribe .email .input:invalid ~ .border {
  background: #d31414;
}
.footer .subscribe .email .input:invalid ~ .submit {
  border: 1px solid #d31414;
  color: #d31414;
}
.footer .subscribe .email .input:valid ~ .border, .footer .subscribe .email .input:not(:focus) ~ .border {
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
}
.footer .subscribe .email .input:-moz-placeholder-shown ~ .submit {
  border: 1px solid #333b41;
  color: #000000;
}
.footer .subscribe .email .input:-ms-input-placeholder ~ .submit {
  border: 1px solid #333b41;
  color: #000000;
}
.footer .subscribe .email .input:placeholder-shown ~ .submit {
  border: 1px solid #333b41;
  color: #000000;
}
.footer .subscribe .email .input:active ~ .border {
  background: #4b9200;
}
.footer .subscribe .email .border {
  position: absolute;
  z-index: 0;
}
.footer .subscribe .email .submit {
  width: 129px;
  border: 1px solid #333b41;
  border-radius: 5px;
  color: #000000;
  background-color: #f1f3f2;
}
.footer .subscribe .email .submit:active {
  border: 1px solid #4b9200;
  color: #4b9200;
}
.footer .subscribe .email .submit:hover {
  cursor: pointer;
  box-shadow: 0 0 4px 2px #f1f3f2;
  transition: box-shadow 0.2s;
}
.footer .social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .social .social-link {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.footer .social .social-link .text {
  color: #ffffff;
  padding-left: 12px;
  margin: 0;
}
.footer .social .social-link .text.facebook {
  transform: translateY(1px);
}
.footer .social .social-link .text.twitter, .footer .social .social-link .text.instagram {
  transform: translateY(-1px);
}
.footer .social .social-link:hover:not(:active) .facebook.text {
  filter: drop-shadow(0 0 1px #1178f2);
}
.footer .social .social-link:hover:not(:active) .facebook.icon {
  background-color: #1178f2;
}
.footer .social .social-link:hover:not(:active) .twitter.text {
  filter: drop-shadow(0 0 1px #1d9bf0);
}
.footer .social .social-link:hover:not(:active) .twitter.icon {
  background-color: #1d9bf0;
}
.footer .social .social-link:hover:not(:active) .instagram.text {
  filter: drop-shadow(0 0 1px #a14daf);
}
.footer .social .social-link:hover:not(:active) .instagram.icon {
  background-image: url("../../icons/icon-ig.svg"), linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.footer .social .social-link:hover:not(:active) .youtube.text {
  filter: drop-shadow(0 0 1px #ff011d);
}
.footer .social .social-link:hover:not(:active) .youtube.icon {
  background-color: #ff011d;
}
.footer .social .social-link:active .text {
  color: #4b9200;
}
.footer .social .social-link:active .icon {
  background-color: #4b9200;
}
.footer .social .icon {
  width: 26px;
  height: 26px;
  background: rgba(196, 196, 196, 0.5019607843) no-repeat center;
  border-radius: 50%;
}
.footer .social .icon.facebook {
  background-image: url("../../icons/icon-fb.svg");
}
.footer .social .icon.twitter {
  background-image: url("../../icons/icon-tw.svg");
}
.footer .social .icon.instagram {
  background-image: url("../../icons/icon-ig.svg");
}
.footer .social .icon.youtube {
  background-image: url("../../icons/icon-yt.svg");
  background-position: center 49%;
}
@media (max-width: 940px) {
  .footer .social {
    gap: 20px;
  }
  .footer .social .text {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer .social {
    margin-top: 2px;
    gap: 30px;
    flex-direction: row;
    align-self: center;
  }
}
.footer .watermark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 228px;
  height: 52px;
  margin-bottom: -1px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 130%;
}
.footer .watermark > p {
  margin: 0;
}
@media (max-width: 600px) {
  .footer .watermark {
    width: 214px;
    height: 49px;
    font-size: 15px;
    line-height: 120%;
  }
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 298px;
  height: 54px;
  padding: 16px 0;
  border: none;
  outline: none;
  border-radius: 5px;
  text-align: center;
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
  color: #ffffff;
}
.button:hover {
  cursor: pointer;
  background: #e47209;
}
.button:active {
  background: #4b9200;
}
.button:disabled {
  background: #767474;
}

.button.rounded {
  border-radius: 25px;
  padding: 16px 1px 16px 5px;
}

.logo {
  padding: 0.5px 2px;
}
.logo.container {
  display: flex;
  flex-direction: column;
  width: 82px;
  height: 52px;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 2px;
  text-decoration: none;
  color: #ffffff;
}
.logo.text {
  margin: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 19.0145px;
  line-height: 120%;
  text-align: center;
  background: url("../../icons/bamboo.svg") no-repeat;
  background-position: bottom 0.3em left 0.35em;
}

html,
body {
  /* @extend %remove-scrollbars; */
  overflow-y: overlay;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 7px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3333333333);
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3333333333);
  border-radius: 15px;
}

html {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
}

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

.section-wrapper {
  width: 100%;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 1160px;
  /*  transition: all 0.5s ease-in-out; */
}
@media (max-width: 1320px) {
  .content-wrapper {
    max-width: 940px;
  }
}
@media (max-width: 940px) {
  .content-wrapper {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .content-wrapper {
    max-width: 300px;
  }
}

.main-page .watch.section-wrapper {
  background: #283035 url("../../images/backgrounds/giant-panda-small.jpg");
  background-position: center;
  background-size: cover;
}
.main-page .watch .content-wrapper {
  position: relative;
  height: 780px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.main-page .watch .watch-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 92px;
  margin-right: 108px;
  width: 465px;
  height: 465px;
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
  border-radius: 50%;
}
.main-page .watch .watch-circle .watch-circle-text {
  position: relative;
  top: 8.9%;
  left: 19.5%;
  color: #ffffff;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 106.496px;
  line-height: 75%;
  text-align: center;
  text-transform: uppercase;
  cursor: default;
}
.main-page .watch .watch-circle span {
  color: #ffee2e;
}
.main-page .watch .button {
  margin-top: 69px;
  margin-right: 99px;
}
@media (max-width: 1320px) {
  .main-page .watch .content-wrapper {
    height: 584px;
  }
  .main-page .watch .watch-circle {
    width: 367px;
    height: 367px;
    margin-top: 69px;
    margin-right: 147px;
  }
  .main-page .watch .watch-circle .watch-circle-text {
    font-size: 85px;
    top: 8.3%;
    left: 20.4%;
  }
  .main-page .watch .button {
    margin-top: 47px;
    margin-right: 107px;
  }
}
@media (max-width: 940px) {
  .main-page .watch .content-wrapper {
    height: 373px;
  }
  .main-page .watch .watch-circle {
    position: relative;
    width: 237.6px;
    height: 237.6px;
    margin: 0;
    margin-top: 44px;
    margin-right: 51.6px;
  }
  .main-page .watch .watch-circle .watch-circle-text {
    font-size: 54.2894px;
    top: 9.2%;
    left: 19.5%;
  }
  .main-page .watch .button {
    position: relative;
    bottom: 50px;
    align-self: flex-start;
  }
}
@media (max-width: 600px) {
  .main-page .watch.section-wrapper {
    background-position-y: 34px;
  }
  .main-page .watch .content-wrapper {
    height: 187px;
    margin-top: 34px;
  }
  .main-page .watch .watch-circle {
    width: 119.09px;
    height: 119.09px;
    margin-top: 22px;
    margin-right: 28px;
  }
  .main-page .watch .watch-circle .watch-circle-text {
    font-size: 28px;
    top: 10%;
  }
  .main-page .watch .button {
    position: absolute;
    transform: translateX(1px);
    bottom: -74px;
  }
}
.main-page .backstage.section-wrapper {
  background: #ffffff;
  background-image: url("../../images/backgrounds/flower-foto1.png");
  background-repeat: no-repeat;
  background-position: right top 12px;
}
.main-page .backstage .content-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 140px auto 180px;
  height: 403px;
  background: rgba(255, 255, 255, 0.7490196078);
}
.main-page .backstage .bamboo-cap {
  margin-left: -1px;
}
.main-page .backstage .backstage-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 465px;
  color: #333b41;
}
.main-page .backstage .backstage-text > * {
  margin: 0;
}
.main-page .backstage .backstage-text p:nth-child(2) {
  margin-top: 22px;
  line-height: 130%;
}
.main-page .backstage .backstage-text p:nth-child(3) {
  margin-top: 54px;
}
.main-page .backstage .backstage-text p:nth-child(4) {
  margin-top: 33px;
}
@media (max-width: 1320px) {
  .main-page .backstage.section-wrapper {
    background-image: none;
  }
  .main-page .backstage .content-wrapper {
    margin: 100px auto 147px;
    height: 423px;
  }
  .main-page .backstage .bamboo-cap {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top 0 left -81px;
       object-position: top 0 left -81px;
    width: 455px;
    height: 408px;
    margin-left: 0px;
    padding-top: 9px;
  }
  .main-page .backstage .backstage-text {
    width: 454px;
  }
}
@media (max-width: 940px) {
  .main-page .backstage.section-wrapper {
    background-image: url("../../images/backgrounds/flower-foto1.png");
    background-size: 161px 484px;
    background-position: right -6% top -4px;
  }
  .main-page .backstage .content-wrapper {
    margin: 60px auto 80px;
    height: 367px;
    background: none;
  }
  .main-page .backstage .bamboo-cap {
    display: none;
  }
  .main-page .backstage .backstage-text {
    width: 495px;
  }
  .main-page .backstage .backstage-text .h2 {
    position: relative;
    left: 4px;
  }
  .main-page .backstage .backstage-text p:nth-child(3) {
    margin-top: 30px;
    margin-left: 4px;
  }
  .main-page .backstage .backstage-text p:nth-child(4) {
    margin-top: 19px;
  }
}
@media (max-width: 600px) {
  .main-page .backstage.section-wrapper {
    background-size: 72px 217px;
    background-position: right -40px top 40px;
  }
  .main-page .backstage .content-wrapper {
    margin: 105px auto 40px;
    height: 387px;
  }
  .main-page .backstage .backstage-text {
    width: 100%;
  }
  .main-page .backstage .backstage-text .h2 {
    left: 0px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
  }
  .main-page .backstage .backstage-text p:nth-child(2) {
    margin-top: 10px;
    margin-left: 2px;
  }
  .main-page .backstage .backstage-text p:nth-child(3) {
    margin-top: 21px;
    margin-left: 2px;
  }
  .main-page .backstage .backstage-text p:nth-child(4) {
    margin-top: 9px;
    margin-left: 0px;
    line-height: 138%;
  }
}
.main-page .pets.section-wrapper {
  height: 1106px;
  background: #ffffff;
  background-image: url("../../images/backgrounds/bush.png"), url("../../images/backgrounds/strelitzia.png");
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: -588px, right;
}
@media (max-width: 1320px) {
  .main-page .pets.section-wrapper {
    height: 1075px;
    background-position-x: -190px, right;
    background-size: 38.2%, 24.1%;
  }
}
@media (max-width: 940px) {
  .main-page .pets.section-wrapper {
    height: 970px;
    background-position-x: -248px, right;
    background-size: 59.5%, 27%;
  }
}
@media (max-width: 600px) {
  .main-page .pets.section-wrapper {
    height: 1522px;
    background-position-x: -80px, 110%;
    background-position-y: bottom, 100.3%;
    background-size: 43%, 30%;
  }
}
.main-page .pets .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-page .pets .carousel-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.main-page .pets .carousel {
  position: relative;
  height: 872px;
  display: flex;
  flex-flow: column wrap;
  gap: 20px 30px;
  margin-left: 2px;
}
@media (max-width: 1320px) {
  .main-page .pets .carousel {
    margin-left: 0px;
    height: 801px;
    gap: 92px 29px;
  }
}
@media (max-width: 940px) {
  .main-page .pets .carousel {
    height: 756px;
    gap: 92px 30px;
  }
}
@media (max-width: 600px) {
  .main-page .pets .carousel {
    height: 1388px;
    width: 100%;
    margin-left: 22px;
    gap: 20px 20px;
  }
}
.main-page .pets .pet-card {
  position: relative;
}
.main-page .pets .pet-card.border,
.main-page .pets .pet-card .content {
  box-sizing: border-box;
  width: 366px;
  height: 426px;
  border-radius: 5px;
  overflow: hidden;
}
.main-page .pets .pet-card.border {
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
}
.main-page .pets .pet-card .content {
  background: #ffffff padding-box;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.main-page .pets .pet-card .pet-img {
  margin: -1px;
  transition: transform 0.5s;
}
.main-page .pets .pet-card .pet-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.main-page .pets .pet-card .text {
  width: 294px;
  height: 38px;
  margin-left: 15px;
  transition: color 0.5s;
  transition: transform 0.5s;
}
.main-page .pets .pet-card .text > * {
  margin: -2px 0;
}
.main-page .pets .pet-card .diet {
  transition: transform 0.5s;
}
.main-page .pets .pet-card:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 1;
  transition: background-color 0.5s;
}
.main-page .pets .pet-card:hover:before {
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.main-page .pets .pet-card:hover .pet-img {
  transform: scale(1.0546448087);
}
.main-page .pets .pet-card:hover .text {
  color: #ffffff;
  margin: 0;
  z-index: 1;
  transform: translate(calc(366px/ 2 - 50%), calc(-426px/ 2 + 100%));
}
@media (max-width: 1320px) {
  .main-page .pets .pet-card.border,
.main-page .pets .pet-card .content {
    width: 294px;
    height: 354px;
  }
  .main-page .pets .pet-card .text {
    width: 231px;
  }
  .main-page .pets .pet-card:hover .pet-img {
    transform: scale(1.0680272109);
  }
  .main-page .pets .pet-card:hover .text {
    transform: translate(calc(294px/ 2 - 50%), calc(-354px/ 2 + 100%));
  }
}
@media (max-width: 940px) {
  .main-page .pets .pet-card.border,
.main-page .pets .pet-card .content {
    width: 285px;
    height: 332px;
  }
  .main-page .pets .pet-card .text {
    width: 229.13px;
    margin-left: 0.7em;
    margin-top: 0.5em;
  }
  .main-page .pets .pet-card .text > * {
    margin: -1px 0;
  }
  .main-page .pets .pet-card .name {
    font-size: 12.4695px;
  }
  .main-page .pets .pet-card .location {
    font-size: 11.6901px;
  }
  .main-page .pets .pet-card .diet {
    height: 31px;
  }
  .main-page .pets .pet-card:hover .pet-img {
    transform: scale(1.0701754386);
  }
  .main-page .pets .pet-card:hover .text {
    transform: translate(calc(285px/ 2 - 50%), calc(-332px/ 2 + 100%));
  }
  .main-page .pets .pet-card:hover .diet {
    transform: translateY(5px);
  }
}
.main-page .pets .carousel-control-wrapper {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: -81px;
  right: -81px;
  z-index: 1;
  top: 403px;
}
@media (max-width: 1320px) {
  .main-page .pets .carousel-control-wrapper {
    left: 34.4%;
    right: 34.3%;
    top: 368px;
  }
}
@media (max-width: 940px) {
  .main-page .pets .carousel-control-wrapper {
    left: 37.1%;
    right: 37.1%;
    top: 343px;
  }
}
@media (max-width: 600px) {
  .main-page .pets .carousel-control-wrapper {
    display: none;
  }
}
.main-page .pets .carousel-control-wrapper > * {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
}
.main-page .pets .carousel-control-wrapper > *:hover {
  cursor: pointer;
  background-color: #e47209;
}
.main-page .pets .carousel-control-wrapper > *:active {
  background-color: #4b9200;
}
.main-page .pets .carousel-control-wrapper > *:disabled {
  background-color: #767474;
}
.main-page .pets .carousel-control-wrapper .carousel-control-left {
  background-image: url("../../icons/arrow-left.svg"), linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
}
.main-page .pets .carousel-control-wrapper .carousel-control-left:hover, .main-page .pets .carousel-control-wrapper .carousel-control-left:active, .main-page .pets .carousel-control-wrapper .carousel-control-left:disabled {
  background-image: url("../../icons/arrow-left.svg");
}
.main-page .pets .carousel-control-wrapper .carousel-control-right {
  background-image: url("../../icons/arrow-right.svg"), linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
}
.main-page .pets .carousel-control-wrapper .carousel-control-right:hover, .main-page .pets .carousel-control-wrapper .carousel-control-right:active, .main-page .pets .carousel-control-wrapper .carousel-control-right:disabled {
  background-image: url("../../icons/arrow-right.svg");
}
.main-page .pets .button.choose-favorite {
  margin-top: 80px;
}
@media (max-width: 940px) {
  .main-page .pets .button.choose-favorite {
    margin-top: 60px;
  }
}
@media (max-width: 600px) {
  .main-page .pets .button.choose-favorite {
    margin-top: 20px;
  }
}
.main-page .pick-n-feed.section-wrapper {
  background: linear-gradient(315.75deg, rgba(254, 210, 144, 0.7) 30.06%, #febdab 100.95%, rgba(254, 210, 144, 0.7) 106.36%), linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%), linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%);
}
.main-page .pick-n-feed .content-wrapper {
  background: rgba(253, 253, 255, 0.52);
  height: 835px;
  margin-top: 69px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .content-wrapper {
    margin-top: 30px;
    margin-bottom: 50px;
    height: 796px;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .content-wrapper {
    margin: 20px auto;
    height: 741px;
    max-width: 640px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .content-wrapper {
    height: 1042px;
    max-width: 300px;
  }
}
.main-page .pick-n-feed .h2 {
  position: relative;
  left: 1px;
  margin: 41px 0 0;
  color: #fe9013;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .h2 {
    margin: 30px 0 0;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .h2 {
    margin: 10px 0 0;
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .h2 {
    margin-top: 21px;
    margin-left: -2px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
  }
}
.main-page .pick-n-feed .subtitle {
  position: relative;
  right: 2.5em;
  margin: 31px 0 0;
  color: #333b41;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .subtitle {
    left: 0px;
    margin: 0.88em 0 0;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .subtitle {
    font-size: 22px;
    right: auto;
    margin-top: 0.94em;
    margin-left: 0.91em;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .subtitle {
    margin-top: 11px;
    margin-left: -3px;
    font-size: 18px;
    text-align: center;
  }
}
.main-page .pick-n-feed .covid {
  margin: 41px 0 0;
  position: relative;
  left: 1.22em;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #333b41;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .covid {
    margin: 20px 100px 0 30px;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .covid {
    margin: 19px 30px 0 0px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .covid {
    display: none;
  }
}
.main-page .pick-n-feed .support-fund {
  margin: 10px 198px 0 99px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #333b41;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .support-fund {
    margin: 11px 30px 0 50px;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .support-fund {
    margin: 11px 20px 0 20px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .support-fund {
    display: none;
  }
}
.main-page .pick-n-feed .support-fund a {
  position: relative;
  color: #333b41;
  text-decoration: none;
}
.main-page .pick-n-feed .support-fund a:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  width: 178px;
  height: 1px;
  background: #fe9013;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .support-fund a:after {
    top: 1.18em;
  }
}
.main-page .pick-n-feed .support-fund a:active {
  color: #4b9200;
}
.main-page .pick-n-feed .support-fund a:active:after {
  background: #4b9200;
}
.main-page .pick-n-feed .support-fund a:hover:after {
  background: #4b9200;
  box-shadow: 0 0 3px 1px #4b9200;
}
.main-page .pick-n-feed .h3 {
  margin: 60px 0 0 0;
  position: relative;
  right: 1px;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .h3 {
    margin: 40px 0 0 2px;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .h3 {
    margin: 30px 0 0 2px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .h3 {
    margin-top: 18px;
    margin-right: -1px;
    font-size: 24px;
  }
}
.main-page .pick-n-feed .widgets {
  display: flex;
  justify-content: space-between;
  margin-top: 39px;
  width: 764px;
  height: 244px;
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .widgets {
    position: relative;
    right: 6px;
    margin-top: 19px;
    width: 588px;
    height: 244px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .widgets {
    width: 168px;
    height: 724px;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.main-page .pick-n-feed .widget-card-container {
  display: flex;
  flex-direction: column;
  width: 168px;
  height: 244px;
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .widget-card-container {
    height: 231px;
  }
  .main-page .pick-n-feed .widget-card-container:first-child {
    height: 222px;
  }
}
.main-page .pick-n-feed .widget-card-container:nth-child(1) .widget-card-image {
  background-image: url("../../icons/pay.svg");
}
.main-page .pick-n-feed .widget-card-container:nth-child(2) .widget-card-image {
  background-image: url("../../icons/zoo.svg");
  background-position: left 49% top 53%;
}
.main-page .pick-n-feed .widget-card-container:nth-child(3) .widget-card-image {
  background-image: url("../../icons/monkey.svg");
}
.main-page .pick-n-feed .widget-card-container p {
  margin: 30px 0 0;
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .widget-card-container p {
    margin-top: 10px;
  }
}
.main-page .pick-n-feed .widget-card-container:not(:first-child) {
  position: relative;
}
.main-page .pick-n-feed .widget-card-container:not(:first-child):before {
  content: url("../../icons/fat-arrow.svg");
  position: absolute;
  left: -60%;
  top: 24.5%;
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .widget-card-container:not(:first-child):before {
    content: url("../../icons/arrow.svg");
    top: -7%;
    left: -44%;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .widget-card-container:not(:first-child):before {
    top: -54px;
    left: auto;
    right: -57px;
    transform: rotate(84.44deg);
  }
}
.main-page .pick-n-feed .widget-card-image-wrapper,
.main-page .pick-n-feed .widget-card-image {
  box-sizing: border-box;
  width: 168px;
  height: 168px;
  border-radius: 5px;
}
.main-page .pick-n-feed .widget-card-image-wrapper {
  background: linear-gradient(113.96deg, #f9804b 1.49%, #fe9013 101.44%);
}
.main-page .pick-n-feed .widget-card-image {
  background: #ffffff padding-box no-repeat center;
  border: 1px solid transparent;
}
.main-page .pick-n-feed .button {
  margin-top: 60px;
}
@media (max-width: 1320px) {
  .main-page .pick-n-feed .button {
    margin: 71px 0px 0 0px;
  }
}
@media (max-width: 940px) {
  .main-page .pick-n-feed .button {
    margin: 40px 0px 0 0px;
  }
}
@media (max-width: 600px) {
  .main-page .pick-n-feed .button {
    margin: 30px 2px 0 0px;
  }
}
.main-page .testimonials.section-wrapper {
  background: #ffffff url("../../images/backgrounds/leav_foto.png") no-repeat;
  background-position: bottom -133px right -163px;
  height: 919px;
}
@media (max-width: 1320px) {
  .main-page .testimonials.section-wrapper {
    height: 841px;
    background-position: bottom -85px right -128px;
    background-size: 32.5%;
  }
}
@media (max-width: 940px) {
  .main-page .testimonials.section-wrapper {
    height: 668px;
    background-position: bottom -71px right -90px;
    background-size: 32.5%;
  }
}
@media (max-width: 600px) {
  .main-page .testimonials.section-wrapper {
    height: 580px;
    background: #ffffff url("../../images/backgrounds/leav_foto_mobile.png") no-repeat;
    background-position: bottom -30px right;
  }
}
.main-page .testimonials .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-page .testimonials .h3 {
  margin: 141px 0 0 0;
}
@media (max-width: 1320px) {
  .main-page .testimonials .h3 {
    margin-top: 100.4px;
  }
}
@media (max-width: 940px) {
  .main-page .testimonials .h3 {
    margin-top: 61px;
    position: relative;
    right: 2px;
  }
}
@media (max-width: 600px) {
  .main-page .testimonials .h3 {
    margin-top: 29px;
    position: relative;
    right: 0px;
    font-size: 24px;
  }
}
.main-page .testimonials .reviews-container-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-page .testimonials .reviews-container {
  margin-top: 47px;
  height: 391px;
  display: flex;
  justify-content: flex-start;
  gap: 31px;
}
@media (max-width: 1320px) {
  .main-page .testimonials .reviews-container {
    margin-top: 30px;
    gap: 30px;
  }
}
@media (max-width: 940px) {
  .main-page .testimonials .reviews-container {
    flex-direction: column;
    height: 357px;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .main-page .testimonials .reviews-container {
    margin-top: 19px;
  }
}
.main-page .testimonials .review-wrapper,
.main-page .testimonials .review {
  box-sizing: border-box;
  width: 267px;
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 1320px) {
  .main-page .testimonials .review-wrapper,
.main-page .testimonials .review {
    width: 293px;
  }
}
@media (max-width: 940px) {
  .main-page .testimonials .review-wrapper,
.main-page .testimonials .review {
    width: auto;
    height: 109px;
  }
}
.main-page .testimonials .review-wrapper {
  background: linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%), linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%);
}
.main-page .testimonials .review {
  padding: 0.8em;
  background: #f1f3f2 padding-box;
  border: 2px solid transparent;
}
@media (max-width: 940px) {
  .main-page .testimonials .review {
    padding-left: 0.6em;
    padding-top: 0.75em;
  }
}
@media (max-width: 600px) {
  .main-page .testimonials .review {
    padding-left: 0.6em;
    padding-top: 0.5em;
  }
}
.main-page .testimonials .review-header {
  display: flex;
}
.main-page .testimonials .head {
  margin-right: 10px;
}
@media (max-width: 600px) {
  .main-page .testimonials .head {
    margin-right: 6.5px;
  }
}
.main-page .testimonials .name {
  line-height: 120%;
  color: #000000;
}
@media (max-width: 600px) {
  .main-page .testimonials .name {
    margin-top: 1px;
  }
}
.main-page .testimonials .info {
  color: #bdbdbd;
}
@media (max-width: 600px) {
  .main-page .testimonials .info {
    letter-spacing: -0.01em;
  }
}
.main-page .testimonials .text {
  margin-top: 11px;
  height: 309px;
  color: #767474;
  overflow-y: hidden;
}
@media (max-width: 940px) {
  .main-page .testimonials .text {
    height: 38px;
    padding-left: 0.4em;
  }
}
.main-page .testimonials.popup {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  left: 10%;
  z-index: 5;
}
.main-page .testimonials.popup .review-wrapper,
.main-page .testimonials.popup .review {
  height: 100%;
}
.main-page .testimonials.popup .text {
  height: 100%;
}
.main-page .testimonials.popup .popup-close-button {
  position: absolute;
  height: 14px;
  width: 14px;
  top: -10px;
  right: -10px;
  background: url("../../icons/popup_icon_close.svg");
}
.main-page .testimonials .range-scrollbar-wrapper,
.main-page .testimonials .range-scrollbar {
  box-sizing: border-box;
  width: 601px;
  height: 8px;
  border-radius: 5px;
}
@media (max-width: 1320px) {
  .main-page .testimonials .range-scrollbar-wrapper,
.main-page .testimonials .range-scrollbar {
    width: 390px;
  }
}
.main-page .testimonials .range-scrollbar-wrapper {
  position: relative;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  background: linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%), linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%);
}
.main-page .testimonials .range-scrollbar-wrapper:hover {
  box-shadow: 0 0 3px 1px #fe9013;
}
@media (max-width: 1320px) {
  .main-page .testimonials .range-scrollbar-wrapper {
    right: 7px;
  }
}
@media (max-width: 940px) {
  .main-page .testimonials .range-scrollbar-wrapper {
    display: none;
  }
}
.main-page .testimonials .range-scrollbar {
  height: 6px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  margin: 10px 0;
  width: calc(100% - 2px);
}
.main-page .testimonials .range-scrollbar:focus {
  outline: none;
}
.main-page .testimonials .range-scrollbar::-webkit-slider-thumb {
  cursor: pointer;
  -webkit-appearance: none;
  border: none;
  width: 12.5%;
  height: 6px;
  border-radius: 5px;
  background: #fe9013;
}
@media (max-width: 1320px) {
  .main-page .testimonials .range-scrollbar::-webkit-slider-thumb {
    width: 11.1111111111%;
  }
}
.main-page .testimonials .range-scrollbar::-moz-range-thumb {
  cursor: pointer;
  border: none;
  width: 12.5%;
  height: 6px;
  border-radius: 5px;
  background: #fe9013;
}
@media (max-width: 1320px) {
  .main-page .testimonials .range-scrollbar::-moz-range-thumb {
    width: 75px;
  }
}
.main-page .testimonials .range-scrollbar::-webkit-slider-runnable-track, .main-page .testimonials .range-scrollbar::-moz-range-track {
  cursor: pointer;
  width: 100%;
  height: 6px;
  border: none;
  border-radius: 5px;
  background: #f5f7f6;
}
.main-page .testimonials .range-scrollbar:focus::-webkit-slider-runnable-track {
  background: #f5f7f6 padding-box;
}
.main-page .testimonials .button {
  position: absolute;
  left: 0;
  bottom: -85px;
}
@media (max-width: 1320px) {
  .main-page .testimonials .button {
    bottom: -106px;
  }
}
@media (max-width: 940px) {
  .main-page .testimonials .button {
    bottom: -93px;
    left: 50%;
    transform: translate(-50%);
    width: 240px;
  }
}
@media (max-width: 600px) {
  .main-page .testimonials .button {
    bottom: -84px;
  }
}

@media (max-width: 1320px) {
  .donate-page .footer .subscribe {
    right: 33px;
  }
  .donate-page .footer .nav {
    left: 50%;
  }
}
@media (max-width: 940px) {
  .donate-page .footer .nav {
    left: 0;
  }
}
.donate-page .panda-bg {
  margin-top: 80px;
  height: 386px;
  background: #283035 url("../../images/backgrounds/giant-panda.jpg");
  background-position: center;
  background-size: cover;
}
@media (max-width: 1320px) {
  .donate-page .panda-bg {
    height: 390px;
    background-position: left 28% top 0;
  }
}
@media (max-width: 940px) {
  .donate-page .panda-bg {
    margin-top: 34px;
    height: 335px;
    background-position: left 37% top 0;
  }
}
@media (max-width: 600px) {
  .donate-page .panda-bg {
    height: 187px;
    background-position: left 33% top 0;
  }
}
.donate-page .pick-n-feed.section-wrapper {
  background: linear-gradient(315.75deg, rgba(254, 210, 144, 0.7) 30.06%, #febdab 100.95%, rgba(254, 210, 144, 0.7) 106.36%), linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%), linear-gradient(315.75deg, rgba(254, 189, 171, 0.74) 30.06%, rgba(243, 169, 248, 0.66) 50.74%, #e0d8f0 80.49%, #eaf7fe 127.9%, #eaf7fe 149.54%);
  height: 1482px;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed.section-wrapper {
    height: 1333px;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed.section-wrapper {
    height: 1146px;
  }
}
.donate-page .pick-n-feed .content-wrapper {
  display: flex;
  flex-direction: column;
}
.donate-page .pick-n-feed .heading-1 {
  color: #ffffff;
  margin: 41px 0 0;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .heading-1 {
    margin-right: 3em;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .heading-1 {
    margin-top: 31px;
    margin-right: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
  }
}
.donate-page .pick-n-feed .heading-1 + p {
  margin: 10px 0;
  color: #ffffff;
}
.donate-page .pick-n-feed .heading-1 + p span {
  font-weight: 500;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .heading-1 + p {
    margin: 29px 0px 0 1px;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .heading-1 + p {
    margin: 19px 0 0 0px;
    line-height: 138%;
  }
}
.donate-page .pick-n-feed .heading-2 {
  color: #fe9013;
  margin: 35px 0 0;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .heading-2 {
    margin-top: 46px;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .heading-2 {
    margin-top: 31px;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .heading-2 {
    margin-top: 31px;
    font-size: 24px;
    line-height: 120%;
  }
}
.donate-page .pick-n-feed .pick-n-feed-form-background {
  height: 964px;
  margin-top: 59px;
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .pick-n-feed-form-background {
    height: 918px;
    margin-top: 39px;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .pick-n-feed-form-background {
    margin-top: 29px;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .pick-n-feed-form-background {
    height: 591px;
  }
}
.donate-page .pick-n-feed .pick-n-feed-form {
  width: 100%;
  margin: 40px 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .pick-n-feed-form {
    margin: 50px 0 0;
  }
}
.donate-page .pick-n-feed .h2 {
  position: relative;
  right: 7px;
  color: #fe9013;
  margin: 0;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .h2 {
    right: 7.5px;
    margin-top: -20px;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .h2 {
    right: 0;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .h2 {
    margin-top: -29px;
    font-size: 24px;
  }
}
.donate-page .pick-n-feed .h2 + p {
  margin: 21px 0;
  align-self: flex-start;
  color: #333b41;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .h2 + p {
    margin: 11px -45px 0;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .h2 + p {
    align-self: center;
    text-align: center;
    margin: 20px 0;
    line-height: 122%;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .h2 + p {
    margin: 11px 0;
    font-size: 16px;
  }
}
.donate-page .pick-n-feed .diet-for-day {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 532px;
  height: 246px;
  margin: 45px 14.5px 0 0;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .diet-for-day {
    margin: 67px 16px 0 0;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .diet-for-day {
    margin: 37px 14px 0 0;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .diet-for-day {
    width: 100%;
    height: 138.72px;
    margin: 0;
  }
}
.donate-page .pick-n-feed .info {
  position: relative;
  margin-bottom: 56px;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .info {
    margin-bottom: 19px;
  }
}
.donate-page .pick-n-feed .info:before {
  content: "";
  position: absolute;
  top: 24px;
  right: -25px;
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("../../icons/x_icon.svg");
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .info:before {
    top: 13px;
    right: -13px;
    width: 7.89px;
    height: 7.89px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.donate-page .pick-n-feed .number {
  margin-bottom: 11px;
  color: #000000;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 72px;
  line-height: 80%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .number {
    margin-bottom: 3px;
    margin-left: -2px;
    font-weight: 500;
    font-size: 40.6015px;
  }
}
.donate-page .pick-n-feed .text {
  color: #333b41;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .text {
    font-size: 9.02255px;
  }
}
.donate-page .pick-n-feed .animal-icon-wrapper {
  position: relative;
  bottom: 0;
  left: 0;
  width: 284px;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .animal-icon-wrapper {
    bottom: 1px;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .animal-icon-wrapper {
    width: 160.15px;
    height: 100%;
    bottom: -2px;
  }
}
.donate-page .pick-n-feed .animal-icon {
  width: 100%;
}
.donate-page .pick-n-feed .progress-bar {
  position: relative;
  display: flex;
  margin-top: 80px;
  width: 100%;
  height: 27px;
  background-color: #404950;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .progress-bar {
    width: 107.1%;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .progress-bar {
    margin-top: 63px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .progress-bar {
    height: 13.5px;
    margin-top: 36.8px;
  }
}
.donate-page .pick-n-feed .progress-bar:before {
  content: "Amount";
  position: absolute;
  margin-left: 4px;
  top: -2.41em;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .progress-bar:before {
    margin-left: 0px;
    top: -2.44em;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .progress-bar:before {
    margin-left: 0.6em;
    top: -1.8em;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .progress-bar:before {
    margin-left: -0.07em;
    top: -1.9em;
  }
}
.donate-page .pick-n-feed .fixed-amounts {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 6px;
  margin-right: 10px;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .fixed-amounts {
    width: inherit;
    margin-top: -2px;
    margin-left: -9px;
    margin-right: -11px;
  }
  .donate-page .pick-n-feed .fixed-amounts > *:first-child {
    display: none;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .fixed-amounts {
    margin-left: 15px;
    margin-right: 15px;
  }
  .donate-page .pick-n-feed .fixed-amounts > *:nth-child(-n+3) {
    display: none;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .fixed-amounts {
    margin-top: -1px;
    margin-left: 7px;
    margin-right: 7px;
  }
  .donate-page .pick-n-feed .fixed-amounts > *:nth-child(-n+3) {
    display: none;
  }
}
.donate-page .pick-n-feed .fixed-amounts:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 25px;
  right: 25px;
  background-color: #72828e;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .fixed-amounts:before {
    height: 1px;
    left: 12.5px;
    right: 12.5px;
  }
}
.donate-page .pick-n-feed .fixed-amounts-radio-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .fixed-amounts-radio-wrapper {
    width: 25px;
    height: 25px;
  }
}
.donate-page .pick-n-feed .fixed-amounts-radio-wrapper:hover {
  cursor: pointer;
  background-image: url("../../icons/roller_icon.svg");
  background-size: 80%;
  transition: background-size 0.3s;
}
.donate-page .pick-n-feed .fixed-amounts-radio-wrapper-checked {
  background-size: 80%;
  background-image: url("../../icons/roller_icon.svg");
}
.donate-page .pick-n-feed .fixed-amounts-radio-wrapper-checked .fixed-amounts-radio:after,
.donate-page .pick-n-feed .fixed-amounts-radio-wrapper-checked .fixed-amounts-radio:before {
  filter: invert(54%) sepia(71%) saturate(590%) hue-rotate(349deg) brightness(101%) contrast(99%);
}
.donate-page .pick-n-feed .fixed-amounts-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffee2e;
}
.donate-page .pick-n-feed .fixed-amounts-radio:before {
  content: "";
  position: relative;
  display: block;
  width: 10px;
  height: 20px;
  bottom: -2.5em;
  left: -1.6em;
  background: url("../../icons/dollar.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .fixed-amounts-radio:before {
    bottom: -2.54em;
    left: -0.63em;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .fixed-amounts-radio:before {
    bottom: -2.5em;
    left: -1.1em;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .fixed-amounts-radio:before {
    width: 5px;
    height: 10px;
    bottom: -1.25em;
    left: -0.53em;
  }
}
.donate-page .pick-n-feed .fixed-amounts-radio:after {
  content: attr(value);
  position: relative;
  bottom: calc(-100% + 0em);
  right: 14px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 140%;
  text-transform: uppercase;
  color: #333b41;
}
@media (max-width: 1320px) {
  .donate-page .pick-n-feed .fixed-amounts-radio:after {
    bottom: calc(-100% - 0.063em);
    right: -1px;
  }
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .fixed-amounts-radio:after {
    right: 6px;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .fixed-amounts-radio:after {
    font-size: 13px;
    right: 0.2em;
    top: 0.35em;
  }
}
.donate-page .pick-n-feed .fixed-amounts-radio:hover {
  cursor: pointer;
}
.donate-page .pick-n-feed .fixed-amounts-radio:checked:before, .donate-page .pick-n-feed .fixed-amounts-radio:checked:after, .donate-page .pick-n-feed .fixed-amounts-radio:hover:before, .donate-page .pick-n-feed .fixed-amounts-radio:hover:after {
  cursor: pointer;
  filter: invert(54%) sepia(71%) saturate(590%) hue-rotate(349deg) brightness(101%) contrast(99%);
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .fixed-amounts-radio {
    width: 5px;
    height: 5px;
  }
}
.donate-page .pick-n-feed .another-amount {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  margin-top: 98px;
  padding-left: 0.5em;
  box-sizing: border-box;
  width: 268px;
  height: 54px;
  color: #000000;
  border: 1px solid;
  border-radius: 2px;
  background-color: transparent;
  background-image: url("../../icons/dollar.svg");
  background-repeat: no-repeat;
  background-position: center right 0.55em;
  -moz-appearance: textfield;
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .another-amount {
    height: 42px;
    width: 180px;
    padding-left: 0.4em;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .another-amount {
    margin-top: 49px;
  }
}
.donate-page .pick-n-feed .another-amount:-moz-placeholder-shown {
  filter: invert(62%) sepia(8%) saturate(161%) hue-rotate(163deg) brightness(96%) contrast(83%);
}
.donate-page .pick-n-feed .another-amount:-ms-input-placeholder {
  filter: invert(62%) sepia(8%) saturate(161%) hue-rotate(163deg) brightness(96%) contrast(83%);
}
.donate-page .pick-n-feed .another-amount:placeholder-shown {
  filter: invert(62%) sepia(8%) saturate(161%) hue-rotate(163deg) brightness(96%) contrast(83%);
}
.donate-page .pick-n-feed .another-amount:not(:-moz-placeholder-shown):valid {
  filter: invert(42%) sepia(99%) saturate(1025%) hue-rotate(57deg) brightness(86%) contrast(101%);
}
.donate-page .pick-n-feed .another-amount:not(:-ms-input-placeholder):valid {
  filter: invert(42%) sepia(99%) saturate(1025%) hue-rotate(57deg) brightness(86%) contrast(101%);
}
.donate-page .pick-n-feed .another-amount:not(:placeholder-shown):valid {
  filter: invert(42%) sepia(99%) saturate(1025%) hue-rotate(57deg) brightness(86%) contrast(101%);
}
.donate-page .pick-n-feed .another-amount:not(:-moz-placeholder-shown):invalid {
  filter: invert(13%) sepia(78%) saturate(4366%) hue-rotate(352deg) brightness(106%) contrast(100%);
}
.donate-page .pick-n-feed .another-amount:not(:-ms-input-placeholder):invalid {
  filter: invert(13%) sepia(78%) saturate(4366%) hue-rotate(352deg) brightness(106%) contrast(100%);
}
.donate-page .pick-n-feed .another-amount:not(:placeholder-shown):invalid {
  filter: invert(13%) sepia(78%) saturate(4366%) hue-rotate(352deg) brightness(106%) contrast(100%);
}
.donate-page .pick-n-feed .another-amount::-webkit-inner-spin-button, .donate-page .pick-n-feed .another-amount::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.donate-page .pick-n-feed .another-radio-container,
.donate-page .pick-n-feed .feed-a-friend,
.donate-page .pick-n-feed .share-with-your-friends {
  position: relative;
  left: 3px;
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .another-radio-container,
.donate-page .pick-n-feed .feed-a-friend,
.donate-page .pick-n-feed .share-with-your-friends {
    left: 1px;
  }
}
.donate-page .pick-n-feed .another-radio-container {
  margin-top: 25px;
  width: 268px;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 940px) {
  .donate-page .pick-n-feed .another-radio-container {
    margin-top: 31px;
  }
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .another-radio-container {
    margin-top: 25px;
    margin-left: -2px;
  }
}
.donate-page .pick-n-feed .another-radio-container label {
  width: 84px;
  height: 21px;
  display: flex;
}
.donate-page .pick-n-feed .another-radio-container input {
  margin-top: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #fe9013;
  border-radius: 50%;
  margin-right: 10px;
}
.donate-page .pick-n-feed .another-radio-container input:checked {
  background: #4b9200;
  border: none;
  box-shadow: 0 0;
}
.donate-page .pick-n-feed .another-radio-container input:hover {
  box-shadow: 0 0 2px 2px #fe9013;
}
.donate-page .pick-n-feed .another-radio-container label:hover,
.donate-page .pick-n-feed .another-radio-container input:hover {
  cursor: pointer;
}
.donate-page .pick-n-feed .feed-a-friend {
  margin-top: 31px;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .feed-a-friend {
    margin-top: 28px;
    margin-left: -2px;
  }
}
.donate-page .pick-n-feed .share-with-your-friends {
  left: 0.14em;
  margin-top: 30px;
  color: #333b41;
}
@media (max-width: 600px) {
  .donate-page .pick-n-feed .share-with-your-friends {
    margin-top: 30px;
    margin-left: -4px;
  }
}/*# sourceMappingURL=main.css.map */